selectize-rails 0.7.2 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +1 -0
- data/lib/selectize-rails/version.rb +1 -1
- data/vendor/assets/javascripts/selectize.js +4 -4
- data/vendor/assets/stylesheets/selectize.bootstrap2.css +2 -2
- data/vendor/assets/stylesheets/selectize.bootstrap3.css +2 -2
- data/vendor/assets/stylesheets/selectize.css +2 -2
- data/vendor/assets/stylesheets/selectize.default.css +2 -2
- data/vendor/assets/stylesheets/selectize.legacy.css +2 -2
- metadata +2 -2
data/README.md
CHANGED
|
@@ -41,6 +41,7 @@ See the [demo page of Brian Reavis](http://brianreavis.github.io/selectize.js/)
|
|
|
41
41
|
|
|
42
42
|
| Version | Notes |
|
|
43
43
|
| -------:| ----------------------------------------------------------- |
|
|
44
|
+
| 0.7.3 | Update to v0.7.3 of selectize.js |
|
|
44
45
|
| 0.7.2 | Update to v0.7.2 of selectize.js |
|
|
45
46
|
| 0.7.0 | Update to v0.7.0 of selectize.js |
|
|
46
47
|
| 0.6.14 | Update to v0.6.14 of selectize.js |
|
|
@@ -463,7 +463,7 @@
|
|
|
463
463
|
}));
|
|
464
464
|
|
|
465
465
|
/**
|
|
466
|
-
* selectize.js (v0.7.
|
|
466
|
+
* selectize.js (v0.7.3)
|
|
467
467
|
* Copyright (c) 2013 Brian Reavis & contributors
|
|
468
468
|
*
|
|
469
469
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -483,11 +483,11 @@
|
|
|
483
483
|
|
|
484
484
|
(function(root, factory) {
|
|
485
485
|
if (typeof define === 'function' && define.amd) {
|
|
486
|
-
define(['sifter','microplugin'], factory);
|
|
486
|
+
define(['jquery','sifter','microplugin'], factory);
|
|
487
487
|
} else {
|
|
488
|
-
root.Selectize = factory(root.Sifter, root.MicroPlugin);
|
|
488
|
+
root.Selectize = factory(root.jQuery, root.Sifter, root.MicroPlugin);
|
|
489
489
|
}
|
|
490
|
-
}(this, function(Sifter, MicroPlugin) {
|
|
490
|
+
}(this, function($, Sifter, MicroPlugin) {
|
|
491
491
|
'use strict';
|
|
492
492
|
|
|
493
493
|
var highlight = function($element, pattern) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.bootstrap2.css (v0.7.
|
|
2
|
+
* selectize.bootstrap2.css (v0.7.3) - Bootstrap 2 Theme
|
|
3
3
|
* Copyright (c) 2013 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
|
|
246
246
|
.selectize-dropdown {
|
|
247
247
|
position: absolute;
|
|
248
|
-
z-index:
|
|
248
|
+
z-index: 10;
|
|
249
249
|
margin: -1px 0 0 0;
|
|
250
250
|
background: #ffffff;
|
|
251
251
|
border: 1px solid #d0d0d0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.bootstrap3.css (v0.7.
|
|
2
|
+
* selectize.bootstrap3.css (v0.7.3) - Bootstrap 3 Theme
|
|
3
3
|
* Copyright (c) 2013 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
|
|
246
246
|
.selectize-dropdown {
|
|
247
247
|
position: absolute;
|
|
248
|
-
z-index:
|
|
248
|
+
z-index: 10;
|
|
249
249
|
margin: -1px 0 0 0;
|
|
250
250
|
background: #ffffff;
|
|
251
251
|
border: 1px solid #cccccc;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.css (v0.7.
|
|
2
|
+
* selectize.css (v0.7.3)
|
|
3
3
|
* Copyright (c) 2013 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
|
|
246
246
|
.selectize-dropdown {
|
|
247
247
|
position: absolute;
|
|
248
|
-
z-index:
|
|
248
|
+
z-index: 10;
|
|
249
249
|
margin: -1px 0 0 0;
|
|
250
250
|
background: #ffffff;
|
|
251
251
|
border: 1px solid #d0d0d0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.default.css (v0.7.
|
|
2
|
+
* selectize.default.css (v0.7.3) - Default Theme
|
|
3
3
|
* Copyright (c) 2013 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
|
|
246
246
|
.selectize-dropdown {
|
|
247
247
|
position: absolute;
|
|
248
|
-
z-index:
|
|
248
|
+
z-index: 10;
|
|
249
249
|
margin: -1px 0 0 0;
|
|
250
250
|
background: #ffffff;
|
|
251
251
|
border: 1px solid #d0d0d0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.legacy.css (v0.7.
|
|
2
|
+
* selectize.legacy.css (v0.7.3) - Default Theme
|
|
3
3
|
* Copyright (c) 2013 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
|
|
246
246
|
.selectize-dropdown {
|
|
247
247
|
position: absolute;
|
|
248
|
-
z-index:
|
|
248
|
+
z-index: 10;
|
|
249
249
|
margin: -1px 0 0 0;
|
|
250
250
|
background: #ffffff;
|
|
251
251
|
border: 1px solid #d0d0d0;
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: selectize-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-09-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|