Skip to content

Commit

Permalink
docs(changelog): updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Dec 8, 2016
1 parent 2e7ed00 commit dce5609
Showing 1 changed file with 28 additions and 11 deletions.
39 changes: 28 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,19 @@ If you want to use svg as icon type copy the
<div class="label-value">1.5</div>
<div class="star-container">
<div class="star">
<i class="star-empty fa fa-this-icon"></i>
<i class="star-half fa fa-half-icon"></i>
<i class="star-filled fa fa-that-icon"></i>
<i class="star-empty"></i>
<i class="star-half"></i>
<i class="star-filled"></i>
</div>
<div class="star">
<i class="star-empty fa fa-this-icon"></i>
<i class="star-half fa fa-half-icon"></i>
<i class="star-filled fa fa-that-icon"></i>
<i class="star-empty"></i>
<i class="star-half"></i>
<i class="star-filled"></i>
</div>
<div class="star">
<i class="star-empty fa fa-this-icon"></i>
<i class="star-half fa fa-half-icon"></i>
<i class="star-filled fa fa-that-icon"></i>
<i class="star-empty"></i>
<i class="star-half"></i>
<i class="star-filled"></i>
</div>
</div>
</div>
Expand Down Expand Up @@ -208,7 +208,7 @@ Static color of stars.
The click callback is disabled, colors are transparent

```html
<div class="rating value-3 color-negative">
<div class="rating value-3 disabled">
<div class="star-container">
...stars...
</div>
Expand Down Expand Up @@ -258,7 +258,24 @@ The type of start resource to use.
```html
<div class="rating value-3 star-icon">
<div class="star-container">
...svg and icon stars...
<!-- font icons-->
<star>
<i class="star-empty"></i>
<i class="star-half"></i>
<i class="star-filled"></i>
</star>
<!-- or svg icons-->
<star>
<svg class="star-empty">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="assets/images/star-rating.icons.svg#star-empty"></use>
</svg>
<svg class="star-half">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="assets/images/star-rating.icons.svg#star-half"></use>
</svg>
<svg class="star-filled">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="assets/images/star-rating.icons.svg#star-filled"></use>
</svg>
</star>
</div>
</div>
```
Expand Down

0 comments on commit dce5609

Please sign in to comment.