Skip to content

Commit 47e0486

Browse files
committed
Released 0.12.4.
1 parent 4fb3a21 commit 47e0486

16 files changed

+27
-21
lines changed

dist/css/selectize.bootstrap2.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.bootstrap2.css (v0.12.3) - Bootstrap 2 Theme
2+
* selectize.bootstrap2.css (v0.12.4) - Bootstrap 2 Theme
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -282,6 +282,7 @@
282282
overflow-y: auto;
283283
overflow-x: hidden;
284284
max-height: 200px;
285+
-webkit-overflow-scrolling: touch;
285286
}
286287
.selectize-control.single .selectize-input,
287288
.selectize-control.single .selectize-input input {

dist/css/selectize.bootstrap3.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.bootstrap3.css (v0.12.3) - Bootstrap 3 Theme
2+
* selectize.bootstrap3.css (v0.12.4) - Bootstrap 3 Theme
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -282,6 +282,7 @@
282282
overflow-y: auto;
283283
overflow-x: hidden;
284284
max-height: 200px;
285+
-webkit-overflow-scrolling: touch;
285286
}
286287
.selectize-control.single .selectize-input,
287288
.selectize-control.single .selectize-input input {

dist/css/selectize.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.css (v0.12.3)
2+
* selectize.css (v0.12.4)
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -283,6 +283,7 @@
283283
overflow-y: auto;
284284
overflow-x: hidden;
285285
max-height: 200px;
286+
-webkit-overflow-scrolling: touch;
286287
}
287288
.selectize-control.single .selectize-input,
288289
.selectize-control.single .selectize-input input {

dist/css/selectize.default.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.default.css (v0.12.3) - Default Theme
2+
* selectize.default.css (v0.12.4) - Default Theme
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -282,6 +282,7 @@
282282
overflow-y: auto;
283283
overflow-x: hidden;
284284
max-height: 200px;
285+
-webkit-overflow-scrolling: touch;
285286
}
286287
.selectize-control.single .selectize-input,
287288
.selectize-control.single .selectize-input input {

dist/css/selectize.legacy.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.legacy.css (v0.12.3) - Default Theme
2+
* selectize.legacy.css (v0.12.4) - Default Theme
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -282,6 +282,7 @@
282282
overflow-y: auto;
283283
overflow-x: hidden;
284284
max-height: 200px;
285+
-webkit-overflow-scrolling: touch;
285286
}
286287
.selectize-control.single .selectize-input,
287288
.selectize-control.single .selectize-input input {

dist/js/selectize.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.js (v0.12.3)
2+
* selectize.js (v0.12.4)
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -64,7 +64,7 @@
6464
* removeHighlight fn copied from highlight v5 and
6565
* edited to remove with() and pass js strict mode
6666
*/
67-
jQuery.fn.removeHighlight = function() {
67+
$.fn.removeHighlight = function() {
6868
return this.find("span.highlight").each(function() {
6969
this.parentNode.firstChild.nodeName;
7070
var parent = this.parentNode;
@@ -1130,7 +1130,7 @@
11301130
self.refreshState();
11311131

11321132
// IE11 bug: element still marked as active
1133-
dest && dest.focus();
1133+
dest && dest.focus && dest.focus();
11341134

11351135
self.ignoreFocus = false;
11361136
self.trigger('blur');

dist/js/selectize.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/standalone/selectize.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@
635635
}));
636636

637637
/**
638-
* selectize.js (v0.12.3)
638+
* selectize.js (v0.12.4)
639639
* Copyright (c) 2013–2015 Brian Reavis & contributors
640640
*
641641
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -700,7 +700,7 @@
700700
* removeHighlight fn copied from highlight v5 and
701701
* edited to remove with() and pass js strict mode
702702
*/
703-
jQuery.fn.removeHighlight = function() {
703+
$.fn.removeHighlight = function() {
704704
return this.find("span.highlight").each(function() {
705705
this.parentNode.firstChild.nodeName;
706706
var parent = this.parentNode;
@@ -1766,7 +1766,7 @@
17661766
self.refreshState();
17671767

17681768
// IE11 bug: element still marked as active
1769-
dest && dest.focus();
1769+
dest && dest.focus && dest.focus();
17701770

17711771
self.ignoreFocus = false;
17721772
self.trigger('blur');

dist/js/standalone/selectize.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/less/selectize.bootstrap2.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.bootstrap2.css (v0.12.3) - Bootstrap 2 Theme
2+
* selectize.bootstrap2.css (v0.12.4) - Bootstrap 2 Theme
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this

dist/less/selectize.bootstrap3.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.bootstrap3.css (v0.12.3) - Bootstrap 3 Theme
2+
* selectize.bootstrap3.css (v0.12.4) - Bootstrap 3 Theme
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this

dist/less/selectize.default.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.default.css (v0.12.3) - Default Theme
2+
* selectize.default.css (v0.12.4) - Default Theme
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this

dist/less/selectize.legacy.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.legacy.css (v0.12.3) - Default Theme
2+
* selectize.legacy.css (v0.12.4) - Default Theme
33
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this

dist/less/selectize.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@
253253
overflow-y: auto;
254254
overflow-x: hidden;
255255
max-height: @selectize-max-height-dropdown;
256+
-webkit-overflow-scrolling: touch;
256257
}
257258

258259
.selectize-control.single .selectize-input {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"main": "dist/js/selectize.js",
1414
"description": "Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.",
15-
"version": "0.12.3",
15+
"version": "0.12.4",
1616
"author": "Brian Reavis <brian@thirdroute.com>",
1717
"license": "Apache-2.0",
1818
"repository": {

selectize.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selectize",
3-
"version": "0.12.3",
3+
"version": "0.12.4",
44
"title": "Selectize.js",
55
"author": {
66
"name": "Brian Reavis",

0 commit comments

Comments
 (0)