corn_starch 1.8.10 → 1.8.11
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/app/assets/javascripts/corn_starch/modal.js.coffee +1 -2
- data/lib/corn_starch/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a950fe099ba21dfe515221c13015f8f5acac057
|
|
4
|
+
data.tar.gz: 4307fd86c58881bb1d602a0ddef8f2d50f20ae43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bf42a07e88669393b44e7acc915cd735e909bcedeadee282661e2c31cf9b8c38475ebc98be256b029be67f36b5813ee3a4ec761c36aec6d87c84acfee403930
|
|
7
|
+
data.tar.gz: bb52331704ae3862d3f938e2d251968828732cd1ef3c87d04421f880a924a6523f45cffab30e015f1d06b27f8f70efdf9e8120f0225477e4869cee93ad773cd9
|
|
@@ -20,8 +20,7 @@ window.modal_init = (modal) ->
|
|
|
20
20
|
# Wire up Quick Hide (Click Outside Modal)
|
|
21
21
|
if $("#modal-#{modal}").length
|
|
22
22
|
$("#modal-#{modal}").click (e) ->
|
|
23
|
-
|
|
24
|
-
modal_hide modal
|
|
23
|
+
modal_hide modal if e.target.id == "modal-#{modal}"
|
|
25
24
|
|
|
26
25
|
# Wire up Show Button
|
|
27
26
|
if $("#modal-#{modal}-btn-show").length
|
data/lib/corn_starch/version.rb
CHANGED