Skip to content

Commit

Permalink
Fix for IE :required issue (selectize#180).
Browse files Browse the repository at this point in the history
  • Loading branch information
brianreavis committed Nov 3, 2013
1 parent f8f38aa commit ebcfa51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/selectize.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var Selectize = function($input, settings) {
highlightedValue : null,
isOpen : false,
isDisabled : false,
isRequired : $input.is(':required'),
isRequired : $input.is('[required]'),
isInvalid : false,
isLocked : false,
isFocused : false,
Expand Down

0 comments on commit ebcfa51

Please sign in to comment.