combo_auto_box 0.0.44 → 0.0.45
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/lib/combo_auto_box/version.rb +1 -1
- data/vendor/assets/javascripts/combo-auto-box.js +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3031b06eb39911201bb28677bd94b7190fa3cc41
|
4
|
+
data.tar.gz: c80d8565a2b286c5346ff65202342b730b9163bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d872b642d13202a3d13b462502b137469b01fe4afd98aa7994b50e414a68cef261a93090b5f1a3e347338f8cc2484338d27d006a8ce0ce76fb311f2185508bf4
|
7
|
+
data.tar.gz: ae8ccda0a3f3f2ba9fa8304d9584340a3c02008ac2ef4fc2365ba7f7da9aec28382458068f4a443ae8f35dddaa928557b72d2a795b5ca5d889f59aa364ffd8f2
|
@@ -531,7 +531,11 @@ var ComboAutoBox = {
|
|
531
531
|
$(targetObject).click(function() {
|
532
532
|
$('#' + modalDialogId).modal('show');
|
533
533
|
// fix to allways show back-shadow
|
534
|
-
$('.modal-backdrop').css('z-index'
|
534
|
+
if ($('.modal-backdrop').css('z-index').toString() != '0') {
|
535
|
+
$('.modal-backdrop').css('z-index', parseInt($('#' + modalDialogId).css("z-index")) - 1);
|
536
|
+
}
|
537
|
+
// alert($('.modal-backdrop').css('z-index'));
|
538
|
+
// alert($('.modal').css('z-index'));
|
535
539
|
});
|
536
540
|
|
537
541
|
$('div#' + modalDialogId + ' > div.modal-dialog > div.modal-content > div.modal-footer > button.selectAll').click(function() {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: combo_auto_box
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.45
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adilson Chacon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-02-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|