File tree 2 files changed +5
-4
lines changed 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ Selectize.defaults = {
61
61
onInitialize : null, // function() { ... }
62
62
onChange : null, // function(value) { ... }
63
63
onItemAdd : null, // function(value, $item) { ... }
64
- onItemRemove : null, // function(value) { ... }
64
+ onItemRemove : null, // function(value, $item ) { ... }
65
65
onClear : null, // function() { ... }
66
66
onOptionAdd : null, // function(value, data) { ... }
67
67
onOptionRemove : null, // function(value) { ... }
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ $.extend(Selectize.prototype, {
244
244
}
245
245
} ) ;
246
246
$window . on ( 'mousemove' + eventNS , function ( ) {
247
- self . ignoreHover = false ;
247
+ self . ignoreHover = self . settings . ignoreHover ;
248
248
} ) ;
249
249
250
250
// store original children and tab index so that they can be
@@ -1054,7 +1054,8 @@ $.extend(Selectize.prototype, {
1054
1054
fields : settings . searchField ,
1055
1055
conjunction : settings . searchConjunction ,
1056
1056
sort : sort ,
1057
- nesting : settings . nesting
1057
+ nesting : settings . nesting ,
1058
+ filter : settings . filter
1058
1059
} ;
1059
1060
} ,
1060
1061
@@ -1425,7 +1426,7 @@ $.extend(Selectize.prototype, {
1425
1426
} ,
1426
1427
1427
1428
/**
1428
- * Clears all options.
1429
+ * Clears all options, including all selected items
1429
1430
*
1430
1431
* @param {boolean } silent
1431
1432
*/
You can’t perform that action at this time.
0 commit comments