recordselect 3.10.0 → 3.10.1
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 +5 -5
- data/app/assets/javascripts/jquery/record_select.js +2 -2
- data/lib/record_select/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 006b5702e836db4a8730a8e731aee0d12523b226d27ef9be853be700ceb2256b
|
|
4
|
+
data.tar.gz: 6cb25279b5d7f17889565fe77532f53fd4034b8e76b02dedae697f00653f0a04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 514075f90ec95f8f0b0894abdf98496a8a4263fe832e00386d4dd690581d6e8b4227b2be2912a43eb29d4f039a45090589343f5b7d02581e2215cf3973253199
|
|
7
|
+
data.tar.gz: b291ffa92701e7bf21a37f658ea000ca40c328ccaeb7bf9d0b024b262de82c5ff605855d127c25851ab4c64925d54100f297f9c6545157132bff12c8243916cd
|
|
@@ -539,7 +539,7 @@ RecordSelect.Autocomplete = RecordSelect.Abstract.extend({
|
|
|
539
539
|
if (this.options.label) this.set(this.options.label);
|
|
540
540
|
|
|
541
541
|
this._respond_to_text_field(this.obj);
|
|
542
|
-
if (this.obj.focused) this.open(); // if it was focused before we could attach observers
|
|
542
|
+
if (this.obj.prop('focused')) this.open(); // if it was focused before we could attach observers
|
|
543
543
|
},
|
|
544
544
|
|
|
545
545
|
close: function() {
|
|
@@ -592,7 +592,7 @@ RecordSelect.Multiple = RecordSelect.Abstract.extend({
|
|
|
592
592
|
}
|
|
593
593
|
|
|
594
594
|
this._respond_to_text_field(this.obj);
|
|
595
|
-
if (this.obj.focused) this.open(); // if it was focused before we could attach observers
|
|
595
|
+
if (this.obj.prop('focused')) this.open(); // if it was focused before we could attach observers
|
|
596
596
|
},
|
|
597
597
|
|
|
598
598
|
onselect: function(id, value, text, item) {
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: recordselect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.10.
|
|
4
|
+
version: 3.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sergio Cambra
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2019-08-05 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: bundler
|
|
@@ -100,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
100
100
|
version: '0'
|
|
101
101
|
requirements: []
|
|
102
102
|
rubyforge_project:
|
|
103
|
-
rubygems_version: 2.
|
|
103
|
+
rubygems_version: 2.7.9
|
|
104
104
|
signing_key:
|
|
105
105
|
specification_version: 4
|
|
106
106
|
summary: RecordSelect widget as a replacement for massive drop down lists
|