Skip to content

Commit

Permalink
comment typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Mello Campanari committed Aug 18, 2016
1 parent d2369d3 commit 64b5df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions angular-input-stars.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ angular.module('angular-input-stars', [])
};

scope.paintStars = function ($index, hover) {
//ignore painting, if readonly
// ignore painting if readonly
if (computed.readonly) {
return;
}
Expand Down Expand Up @@ -83,7 +83,7 @@ angular.module('angular-input-stars', [])
};

scope.setValue = function (index, e) {
//ignore painting
// ignore setting value if readonly
if (computed.readonly) {
return;
}
Expand Down

0 comments on commit 64b5df4

Please sign in to comment.