arctic_admin 1.4.2 → 1.4.3
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1345f924eb4ef382b3eaf99e09221432f69b8a11
|
|
4
|
+
data.tar.gz: f3591d2208577f5da9f0030d8428aa499246c307
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5afea24cf024b745c7d337a95168d8bf825fa1ce767837cb8b4ae7eea101ce7b4a71645656b63c291dbd9168cc676dea3bd1cf3964be713556b18bda6d2d8ba
|
|
7
|
+
data.tar.gz: 6d925584f4962d97ab57a08c54e64f73eb6c5f085ec7f390db2ab73b9b6594aa6c980c58712453ea6ac15ed67e3c3608c95d166802f3e3289fea56c6b272b908
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
//= require active_admin/base
|
|
4
4
|
|
|
5
5
|
$(function() {
|
|
6
|
-
$('#sidebar'
|
|
6
|
+
$(document).on('click', '#sidebar', function(e) {
|
|
7
7
|
var position = $(this).position();
|
|
8
8
|
var width = $(this).width();
|
|
9
9
|
if (e.pageX < position.left) {
|
|
@@ -26,7 +26,7 @@ $(function() {
|
|
|
26
26
|
});
|
|
27
27
|
|
|
28
28
|
var animationDone = true;
|
|
29
|
-
$('#utility_nav'
|
|
29
|
+
$(document).on('click', '#utility_nav', function(e) {
|
|
30
30
|
var position = $(this).position();
|
|
31
31
|
var tabs = $('#tabs');
|
|
32
32
|
var width = Math.round(tabs[0].getBoundingClientRect().width);
|
|
@@ -51,7 +51,7 @@ $(function() {
|
|
|
51
51
|
}
|
|
52
52
|
});
|
|
53
53
|
|
|
54
|
-
$('body'
|
|
54
|
+
$(document).on('click', 'body', function(e) {
|
|
55
55
|
var tabs = $('#tabs');
|
|
56
56
|
var width = Math.round(tabs[0].getBoundingClientRect().width);
|
|
57
57
|
if (tabs.css('left') == '0px') {
|
|
@@ -68,7 +68,7 @@ $(function() {
|
|
|
68
68
|
}
|
|
69
69
|
});
|
|
70
70
|
|
|
71
|
-
$('#tabs .has_nested'
|
|
71
|
+
$(document).on('click', '#tabs .has_nested', function(e) {
|
|
72
72
|
if ($(this).hasClass('open') == true) {
|
|
73
73
|
$(this).removeClass('open');
|
|
74
74
|
} else {
|
data/lib/arctic_admin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arctic_admin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Clément Prod'homme
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -42,16 +42,22 @@ dependencies:
|
|
|
42
42
|
name: activeadmin
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- - "
|
|
45
|
+
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: 1.1.0
|
|
48
|
+
- - "<"
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: '2.0'
|
|
48
51
|
type: :runtime
|
|
49
52
|
prerelease: false
|
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
54
|
requirements:
|
|
52
|
-
- - "
|
|
55
|
+
- - ">="
|
|
53
56
|
- !ruby/object:Gem::Version
|
|
54
57
|
version: 1.1.0
|
|
58
|
+
- - "<"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '2.0'
|
|
55
61
|
- !ruby/object:Gem::Dependency
|
|
56
62
|
name: jquery-rails
|
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|