Skip to content

Commit

Permalink
actually fixing disabled options breaking select/deselect all
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckearin committed Apr 15, 2015
1 parent b0b3db3 commit 2798614
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/js/nya-bs-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ nyaBsSelect.directive('nyaBsSelect', ['$parse', '$document', '$timeout', 'nyaBsC
for (var i = 0; i < liElements.length; i++) {
var nyaBsOption = jqLite(liElements[i]);
if (nyaBsOption.hasClass('disabled'))
break;
continue;

var value, index;

Expand Down
Loading

0 comments on commit 2798614

Please sign in to comment.