-
+
Semantic empowers designers and developers by creating a language for sharing UI.
View UI
diff --git a/node/src/documents/modules/dropdown.html.eco b/node/src/documents/modules/dropdown.html.eco
index 8aec2b8ef..d1354fad1 100755
--- a/node/src/documents/modules/dropdown.html.eco
+++ b/node/src/documents/modules/dropdown.html.eco
@@ -198,6 +198,7 @@ type : 'UI Module'
diff --git a/node/src/documents/modules/rating.html.eco b/node/src/documents/modules/rating.html.eco
index 4d70804cd..95a6f5b5f 100755
--- a/node/src/documents/modules/rating.html.eco
+++ b/node/src/documents/modules/rating.html.eco
@@ -7,8 +7,6 @@ description : 'A rating lets a user assess and view the desirability of content'
type : 'UI Module'
---
-
-
<%- @partial('header') %>
@@ -29,7 +27,7 @@ type : 'UI Module'
To use any variations besides the basic rating
ui icons must be included to provide the additional icons required.
-
+
$('.ui.rating')
.rating()
;
@@ -122,11 +120,33 @@ type : 'UI Module'
-
+
+
+
You can disable or enable interactive rating
+
+ $('.toggle.example .rating')
+ .rating('disable')
+ ;
+
+
+ $('.toggle.example .rating')
+ .rating('enable')
+ ;
+
+
+
+
+
+
+
+
+
+
+
When clearable is set to true
you can clear the rating by clicking on the current start rating.
-
- $('.demo.rating')
+
+ $('.clearing.example .rating')
.rating('setting', 'clearable', true)
;
@@ -144,7 +164,8 @@ type : 'UI Module'
A rating can vary in size
-
+
+
@@ -153,7 +174,7 @@ type : 'UI Module'
-
+
@@ -170,6 +191,15 @@ type : 'UI Module'
+
@@ -192,6 +222,27 @@ type : 'UI Module'
+
+
+
Enables interactive rating
+
+ $('.ui.rating')
+ .rating('enable')
+ ;
+
+
+
+
+
+
Disables interactive rating
+
+ $('.ui.rating')
+ .rating('disable')
+ ;
+
+
+
+