effective_bootstrap 0.9.19 → 0.9.20
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc9ac29fcd023cd275a7a7297fa003465ae57dd4083bc918726ddd320a64aba7
|
|
4
|
+
data.tar.gz: cdc85057126193e16d6ffe680d2176f4338fa18eb2e8ffbd9988ea80f3c7ec84
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43b8330b6295ba275311ea1dc07fa4eb96d33e740f24c35f48c793f4c2941e0e26ddd0b6940ef7d4046cd5e336d765fc47bd62357ce67124bed143d12a81625b
|
|
7
|
+
data.tar.gz: cfcf9995db34b32add68cb9a3e7bc79c441d20758ee12846c177ac37985f0538495ea032b0bc34738cdd0d710cef499af164f2ca9f41fbf01076417044e5bf24
|
|
@@ -3,7 +3,7 @@ assignPositions = (target) ->
|
|
|
3
3
|
return unless $hasMany.length > 0
|
|
4
4
|
|
|
5
5
|
$fields = $hasMany.children('.has-many-fields:not(.marked-for-destruction)')
|
|
6
|
-
positions = $fields.find("input[name$='[position]']").map(-> this.value).get()
|
|
6
|
+
positions = $fields.find("input[name$='[position]'][type=hidden]").map(-> this.value).get()
|
|
7
7
|
|
|
8
8
|
if positions.length > 0
|
|
9
9
|
index = Math.min.apply(Math, positions) || 0
|
|
@@ -35,7 +35,7 @@ $(document).on 'click', '[data-effective-form-has-many-add]', (event) ->
|
|
|
35
35
|
return unless $hasMany.length > 0
|
|
36
36
|
|
|
37
37
|
uid = (new Date).valueOf()
|
|
38
|
-
template = $obj.data('effective-form-has-many-template').replace(/HASMANYINDEX/g, uid)
|
|
38
|
+
template = atob($obj.data('effective-form-has-many-template')).replace(/HASMANYINDEX/g, uid)
|
|
39
39
|
|
|
40
40
|
$fields = $(template).hide().fadeIn('fast')
|
|
41
41
|
EffectiveBootstrap.initialize($fields)
|
|
@@ -150,7 +150,7 @@ module Effective
|
|
|
150
150
|
html.gsub!("#{name}_attributes][#{index}]", "#{name}_attributes][HASMANYINDEX]")
|
|
151
151
|
html.gsub!("#{name}_attributes_#{index}_", "#{name}_attributes_HASMANYINDEX_")
|
|
152
152
|
|
|
153
|
-
html
|
|
153
|
+
Base64.encode64(html)
|
|
154
154
|
end
|
|
155
155
|
|
|
156
156
|
def link_to_add(block)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: effective_bootstrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Code and Effect
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-03-
|
|
11
|
+
date: 2021-03-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|