selectize-rails 0.12.3 → 0.12.4
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -0
- data/README.md +1 -5
- data/lib/selectize-rails/version.rb +1 -1
- data/vendor/assets/javascripts/selectize.js +3 -3
- data/vendor/assets/stylesheets/selectize.bootstrap2.css +2 -1
- data/vendor/assets/stylesheets/selectize.bootstrap3.css +2 -1
- data/vendor/assets/stylesheets/selectize.css +2 -1
- data/vendor/assets/stylesheets/selectize.default.css +2 -1
- data/vendor/assets/stylesheets/selectize.legacy.css +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27da0ed587c42940bb511f71b4a9e22132383176
|
|
4
|
+
data.tar.gz: 7d28c95a3badc75b7d2de7667073a5adc9f73242
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a90cae060c89d13cd517c4345039a1aa5b6a499871114ceb7106a7c78e862b264e03f1a1b7258710ddb9926a403310b77bec0c0a1687ba517de81dedba479f30
|
|
7
|
+
data.tar.gz: 46adc00b8591c2ffc2f4ef9f068dd3512fa04141a27d55c1025e0e98e646dd7f84381ddd2fcdd7fa6c0d649ba0b661dba7d327e7bc1452f9a01263d947d97616
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
| Version | Notes |
|
|
4
4
|
| --------:| ----------------------------------------------------------- |
|
|
5
|
+
| 0.12.4 | Update to v0.12.4 of selectize.js |
|
|
5
6
|
| 0.12.3 | Update to v0.12.3 of selectize.js |
|
|
6
7
|
| 0.12.2 | Update to v0.12.2 of selectize.js |
|
|
7
8
|
| 0.12.1 | Update to v0.12.1 of selectize.js |
|
data/README.md
CHANGED
|
@@ -41,17 +41,13 @@ See the [demo page](http://selectize.github.io/selectize.js/) for examples how t
|
|
|
41
41
|
|
|
42
42
|
| Version | Notes |
|
|
43
43
|
| --------:| ----------------------------------------------------------- |
|
|
44
|
+
| 0.12.4 | Update to v0.12.4 of selectize.js |
|
|
44
45
|
| 0.12.3 | Update to v0.12.3 of selectize.js |
|
|
45
46
|
| 0.12.2 | Update to v0.12.2 of selectize.js |
|
|
46
47
|
| 0.12.1 | Update to v0.12.1 of selectize.js |
|
|
47
48
|
| 0.12.0 | Update to v0.12.0 of selectize.js |
|
|
48
49
|
| 0.11.2 | Update to v0.11.2 of selectize.js |
|
|
49
50
|
| 0.11.0 | Update to v0.11.0 of selectize.js |
|
|
50
|
-
| 0.9.1 | Update to v0.9.1 of selectize.js |
|
|
51
|
-
| 0.9.0 | Update to v0.9.0 of selectize.js |
|
|
52
|
-
| 0.8.5 | Update to v0.8.5 of selectize.js |
|
|
53
|
-
| 0.8.4 | Update to v0.8.4 of selectize.js |
|
|
54
|
-
| 0.8.3 | Update to v0.8.3 of selectize.js |
|
|
55
51
|
|
|
56
52
|
[older](CHANGELOG.md)
|
|
57
53
|
|
|
@@ -635,7 +635,7 @@
|
|
|
635
635
|
}));
|
|
636
636
|
|
|
637
637
|
/**
|
|
638
|
-
* selectize.js (v0.12.
|
|
638
|
+
* selectize.js (v0.12.4)
|
|
639
639
|
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
|
640
640
|
*
|
|
641
641
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -700,7 +700,7 @@
|
|
|
700
700
|
* removeHighlight fn copied from highlight v5 and
|
|
701
701
|
* edited to remove with() and pass js strict mode
|
|
702
702
|
*/
|
|
703
|
-
|
|
703
|
+
$.fn.removeHighlight = function() {
|
|
704
704
|
return this.find("span.highlight").each(function() {
|
|
705
705
|
this.parentNode.firstChild.nodeName;
|
|
706
706
|
var parent = this.parentNode;
|
|
@@ -1766,7 +1766,7 @@
|
|
|
1766
1766
|
self.refreshState();
|
|
1767
1767
|
|
|
1768
1768
|
// IE11 bug: element still marked as active
|
|
1769
|
-
dest && dest.focus();
|
|
1769
|
+
dest && dest.focus && dest.focus();
|
|
1770
1770
|
|
|
1771
1771
|
self.ignoreFocus = false;
|
|
1772
1772
|
self.trigger('blur');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.bootstrap2.css (v0.12.
|
|
2
|
+
* selectize.bootstrap2.css (v0.12.4) - Bootstrap 2 Theme
|
|
3
3
|
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
overflow-y: auto;
|
|
283
283
|
overflow-x: hidden;
|
|
284
284
|
max-height: 200px;
|
|
285
|
+
-webkit-overflow-scrolling: touch;
|
|
285
286
|
}
|
|
286
287
|
.selectize-control.single .selectize-input,
|
|
287
288
|
.selectize-control.single .selectize-input input {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.bootstrap3.css (v0.12.
|
|
2
|
+
* selectize.bootstrap3.css (v0.12.4) - Bootstrap 3 Theme
|
|
3
3
|
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
overflow-y: auto;
|
|
283
283
|
overflow-x: hidden;
|
|
284
284
|
max-height: 200px;
|
|
285
|
+
-webkit-overflow-scrolling: touch;
|
|
285
286
|
}
|
|
286
287
|
.selectize-control.single .selectize-input,
|
|
287
288
|
.selectize-control.single .selectize-input input {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.css (v0.12.
|
|
2
|
+
* selectize.css (v0.12.4)
|
|
3
3
|
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -283,6 +283,7 @@
|
|
|
283
283
|
overflow-y: auto;
|
|
284
284
|
overflow-x: hidden;
|
|
285
285
|
max-height: 200px;
|
|
286
|
+
-webkit-overflow-scrolling: touch;
|
|
286
287
|
}
|
|
287
288
|
.selectize-control.single .selectize-input,
|
|
288
289
|
.selectize-control.single .selectize-input input {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.default.css (v0.12.
|
|
2
|
+
* selectize.default.css (v0.12.4) - Default Theme
|
|
3
3
|
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
overflow-y: auto;
|
|
283
283
|
overflow-x: hidden;
|
|
284
284
|
max-height: 200px;
|
|
285
|
+
-webkit-overflow-scrolling: touch;
|
|
285
286
|
}
|
|
286
287
|
.selectize-control.single .selectize-input,
|
|
287
288
|
.selectize-control.single .selectize-input input {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* selectize.legacy.css (v0.12.
|
|
2
|
+
* selectize.legacy.css (v0.12.4) - Default Theme
|
|
3
3
|
* Copyright (c) 2013–2015 Brian Reavis & contributors
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
overflow-y: auto;
|
|
283
283
|
overflow-x: hidden;
|
|
284
284
|
max-height: 200px;
|
|
285
|
+
-webkit-overflow-scrolling: touch;
|
|
285
286
|
}
|
|
286
287
|
.selectize-control.single .selectize-input,
|
|
287
288
|
.selectize-control.single .selectize-input input {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: selectize-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.12.
|
|
4
|
+
version: 0.12.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Manuel van Rijn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-11-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|