selectize-rails 0.12.3 → 0.12.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c8d908c072aaa1116700105374016f432ad3ab8
4
- data.tar.gz: 14dfd92a4353e875f4ca38a9db0e7627e1bd91b0
3
+ metadata.gz: 27da0ed587c42940bb511f71b4a9e22132383176
4
+ data.tar.gz: 7d28c95a3badc75b7d2de7667073a5adc9f73242
5
5
  SHA512:
6
- metadata.gz: e344f217217bfaa24fd820d6a48663b3e5bc45cd0ce1412e90cf21dd8a0ef4c6bdbeca5c3491a396b4ee2f8d8cb6f582f8fc51f9c1d9d892f56f962b743036b5
7
- data.tar.gz: 3dac8c6a26a4e3ed82170b114f8457e5c8f2c097bf5730911e508aac957939475353205d8dcf2438932f78ce523abc085a3c5c937c78549b2b8a49d253b8a8c5
6
+ metadata.gz: a90cae060c89d13cd517c4345039a1aa5b6a499871114ceb7106a7c78e862b264e03f1a1b7258710ddb9926a403310b77bec0c0a1687ba517de81dedba479f30
7
+ data.tar.gz: 46adc00b8591c2ffc2f4ef9f068dd3512fa04141a27d55c1025e0e98e646dd7f84381ddd2fcdd7fa6c0d649ba0b661dba7d327e7bc1452f9a01263d947d97616
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  module Selectize
2
2
  module Rails
3
- VERSION = "0.12.3"
3
+ VERSION = "0.12.4"
4
4
  end
5
5
  end
@@ -635,7 +635,7 @@
635
635
  }));
636
636
 
637
637
  /**
638
- * selectize.js (v0.12.3)
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
- jQuery.fn.removeHighlight = function() {
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.3) - Bootstrap 2 Theme
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.3) - Bootstrap 3 Theme
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.3)
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.3) - Default Theme
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.3) - Default Theme
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.3
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-08-30 00:00:00.000000000 Z
11
+ date: 2016-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler