Skip to content

Commit 5db1f79

Browse files
committed
Released 0.7.3.
1 parent 63d92f8 commit 5db1f79

17 files changed

+32
-32
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "selectize",
33
"keywords": ["select", "ui", "form", "input", "control", "autocomplete", "tagging", "tag"],
44
"description": "Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.",
5-
"version": "0.7.2",
5+
"version": "0.7.3",
66
"license": "Apache License, Version 2.0",
77
"readmeFilename": "README.md",
88
"repository": {

dist/css/selectize.bootstrap2.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.bootstrap2.css (v0.7.2) - Bootstrap 2 Theme
2+
* selectize.bootstrap2.css (v0.7.3) - Bootstrap 2 Theme
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -245,7 +245,7 @@
245245

246246
.selectize-dropdown {
247247
position: absolute;
248-
z-index: 2;
248+
z-index: 10;
249249
margin: -1px 0 0 0;
250250
background: #ffffff;
251251
border: 1px solid #d0d0d0;

dist/css/selectize.bootstrap3.css

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

246246
.selectize-dropdown {
247247
position: absolute;
248-
z-index: 2;
248+
z-index: 10;
249249
margin: -1px 0 0 0;
250250
background: #ffffff;
251251
border: 1px solid #cccccc;

dist/css/selectize.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.css (v0.7.2)
2+
* selectize.css (v0.7.3)
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -245,7 +245,7 @@
245245

246246
.selectize-dropdown {
247247
position: absolute;
248-
z-index: 2;
248+
z-index: 10;
249249
margin: -1px 0 0 0;
250250
background: #ffffff;
251251
border: 1px solid #d0d0d0;

dist/css/selectize.default.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.default.css (v0.7.2) - Default Theme
2+
* selectize.default.css (v0.7.3) - Default Theme
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -245,7 +245,7 @@
245245

246246
.selectize-dropdown {
247247
position: absolute;
248-
z-index: 2;
248+
z-index: 10;
249249
margin: -1px 0 0 0;
250250
background: #ffffff;
251251
border: 1px solid #d0d0d0;

dist/css/selectize.legacy.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.legacy.css (v0.7.2) - Default Theme
2+
* selectize.legacy.css (v0.7.3) - Default Theme
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -245,7 +245,7 @@
245245

246246
.selectize-dropdown {
247247
position: absolute;
248-
z-index: 2;
248+
z-index: 10;
249249
margin: -1px 0 0 0;
250250
background: #ffffff;
251251
border: 1px solid #d0d0d0;

dist/js/selectize.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.js (v0.7.2)
2+
* selectize.js (v0.7.3)
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -19,11 +19,11 @@
1919

2020
(function(root, factory) {
2121
if (typeof define === 'function' && define.amd) {
22-
define(['sifter','microplugin'], factory);
22+
define(['jquery','sifter','microplugin'], factory);
2323
} else {
24-
root.Selectize = factory(root.Sifter, root.MicroPlugin);
24+
root.Selectize = factory(root.jQuery, root.Sifter, root.MicroPlugin);
2525
}
26-
}(this, function(Sifter, MicroPlugin) {
26+
}(this, function($, Sifter, MicroPlugin) {
2727
'use strict';
2828

2929
var highlight = function($element, pattern) {

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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@
463463
}));
464464

465465
/**
466-
* selectize.js (v0.7.2)
466+
* selectize.js (v0.7.3)
467467
* Copyright (c) 2013 Brian Reavis & contributors
468468
*
469469
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -483,11 +483,11 @@
483483

484484
(function(root, factory) {
485485
if (typeof define === 'function' && define.amd) {
486-
define(['sifter','microplugin'], factory);
486+
define(['jquery','sifter','microplugin'], factory);
487487
} else {
488-
root.Selectize = factory(root.Sifter, root.MicroPlugin);
488+
root.Selectize = factory(root.jQuery, root.Sifter, root.MicroPlugin);
489489
}
490-
}(this, function(Sifter, MicroPlugin) {
490+
}(this, function($, Sifter, MicroPlugin) {
491491
'use strict';
492492

493493
var highlight = function($element, pattern) {

dist/js/standalone/selectize.min.js

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

0 commit comments

Comments
 (0)