romo 0.15.2 → 0.15.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/assets/js/romo/inline_form.js +3 -3
- data/lib/romo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
SHA512:
|
3
|
-
metadata.gz: 343e16ebb56b21125f2b14b2a12140ad70a71186d28bd67298c3113a6a195ca479d4175738a79934a80067839e3aa08b62ba11fe262e7d3ed3b8937c72d1ff8e
|
4
|
-
data.tar.gz: c3d1e19900f72ce245233f7b0f2fffa4dfd63c35eee5c275570f8a97469091ed0049a38baa5c53e34d691708be37a3393cf1171dbf0d97bf4976ceebaf340312
|
5
2
|
SHA1:
|
6
|
-
|
7
|
-
|
3
|
+
data.tar.gz: b0d0f892737a881b31bd74afa17b14d919d85415
|
4
|
+
metadata.gz: 72c961abe361092ecbf36c423665529691e99b64
|
5
|
+
SHA512:
|
6
|
+
data.tar.gz: fc44eb83c0e0c0e9cdb43fe74b47e38ff15f708cb4e7ca6821c8ec81ef0ebb40a5d3773564ec923966342c9042549c4d5622fa75e4ae1e01d45c9559af6681de
|
7
|
+
metadata.gz: 9488f9792e0fd7491c778c0ded1e377ed47a3f4a6e58ac6e2632a02e276cddfdb28a59de102acc65cceb2c9eac854df200622b1802a8745fc345729735da4b86
|
@@ -40,9 +40,6 @@ RomoInlineForm.prototype.doBindInline = function() {
|
|
40
40
|
this.elem.on('inline:ready', $.proxy(function(e, inline) {
|
41
41
|
this.elem.trigger('inlineForm:inline:ready', [inline, this]);
|
42
42
|
}, this));
|
43
|
-
this.elem.on('inline:invoke', $.proxy(function(e, inline) {
|
44
|
-
this.elem.trigger('inlineForm:inline:invoke', [inline, this]);
|
45
|
-
}, this));
|
46
43
|
this.elem.on('inline:loadStart', $.proxy(function(e, inline) {
|
47
44
|
this.elem.trigger('inlineForm:inline:loadStart', [inline, this]);
|
48
45
|
}, this));
|
@@ -52,6 +49,9 @@ RomoInlineForm.prototype.doBindInline = function() {
|
|
52
49
|
this.elem.on('inline:loadError', $.proxy(function(e, xhr, inline) {
|
53
50
|
this.elem.trigger('inlineForm:inline:loadError', [xhr, inline, this]);
|
54
51
|
}, this));
|
52
|
+
this.elem.on('inline:show', $.proxy(function(e, inline) {
|
53
|
+
this.elem.trigger('inlineForm:inline:show', [inline, this]);
|
54
|
+
}, this));
|
55
55
|
this.elem.on('inline:dismiss', $.proxy(function(e, inline) {
|
56
56
|
this.elem.trigger('inlineForm:inline:dismiss', [inline, this]);
|
57
57
|
}, this));
|
data/lib/romo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: romo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
4
|
+
version: 0.15.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kelly Redding
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2016-02-
|
13
|
+
date: 2016-02-10 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: assert
|