Skip to content

Commit

Permalink
Quick fix for Internet Explorer on Microsoft mobile devices like Surface
Browse files Browse the repository at this point in the history
  • Loading branch information
Phoennix committed Jan 15, 2014
1 parent 71e156b commit 618e312
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/bootstrap-rating-input.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/bootstrap-rating-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// HTML element construction
for (i = min; i <= max; i++) {
// Create <max> empty stars
stars += ['<span class="glyphicon glyphicon-star-empty" data-value="', i, '"></span>'].join('');
stars += ['<span class="glyphicon glyphicon-star-empty" data-value="', i, '" style="-ms-touch-action: none;"></span>'].join('');
}
// Add a clear link if clearable option is set
if (clearable) {
Expand Down

0 comments on commit 618e312

Please sign in to comment.