accessible-bootstrap3-rails 0.2.2 → 0.2.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: d50e3c87937e18e7fbe4e10fa59b3d586302fdcf
|
|
4
|
+
data.tar.gz: 70fbc4eecc34b4d5439ee000fbb4bbe4a2f73394
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72756fdee3c1c90786e0ceb84e585e252f1bda6bdcdcf892efa0841e7f01981b393c7bb692a835a5eac2bc60dbc45f185ec2699209290165fc23069d53e32d5f
|
|
7
|
+
data.tar.gz: b30ce7e4e7150ee01da8722422df3df49b8fe40e98ca40cbdb4f837933dac8bb6bc061ae77e6fc393ea3be2279eec05699956be6aea073e9f038b38b71cbe782
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
]
|
|
14
14
|
],
|
|
15
15
|
"_from": "accessible-bootstrap3@latest",
|
|
16
|
-
"_id": "accessible-bootstrap3@0.2.
|
|
16
|
+
"_id": "accessible-bootstrap3@0.2.3",
|
|
17
17
|
"_inCache": true,
|
|
18
18
|
"_installable": true,
|
|
19
19
|
"_location": "/accessible-bootstrap3",
|
|
20
20
|
"_nodeVersion": "5.10.0",
|
|
21
21
|
"_npmOperationalInternal": {
|
|
22
22
|
"host": "packages-12-west.internal.npmjs.com",
|
|
23
|
-
"tmp": "tmp/accessible-bootstrap3-0.2.
|
|
23
|
+
"tmp": "tmp/accessible-bootstrap3-0.2.3.tgz_1466617887222_0.22844799980521202"
|
|
24
24
|
},
|
|
25
25
|
"_npmUser": {
|
|
26
26
|
"email": "the-team@reax.io",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"_requiredBy": [
|
|
40
40
|
"/"
|
|
41
41
|
],
|
|
42
|
-
"_resolved": "https://registry.npmjs.org/accessible-bootstrap3/-/accessible-bootstrap3-0.2.
|
|
43
|
-
"_shasum": "
|
|
42
|
+
"_resolved": "https://registry.npmjs.org/accessible-bootstrap3/-/accessible-bootstrap3-0.2.3.tgz",
|
|
43
|
+
"_shasum": "6e02d46ece940d581adea4bac82c94658afea189",
|
|
44
44
|
"_shrinkwrap": null,
|
|
45
45
|
"_spec": "accessible-bootstrap3@latest",
|
|
46
46
|
"_where": "/Users/brandonhoward/Desktop/code/reax_code/accessible-bootstrap3-rails",
|
|
@@ -59,13 +59,13 @@
|
|
|
59
59
|
"devDependencies": {},
|
|
60
60
|
"directories": {},
|
|
61
61
|
"dist": {
|
|
62
|
-
"shasum": "
|
|
63
|
-
"tarball": "https://registry.npmjs.org/accessible-bootstrap3/-/accessible-bootstrap3-0.2.
|
|
62
|
+
"shasum": "6e02d46ece940d581adea4bac82c94658afea189",
|
|
63
|
+
"tarball": "https://registry.npmjs.org/accessible-bootstrap3/-/accessible-bootstrap3-0.2.3.tgz"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
66
|
"node": ">=4.2.4"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "12e227705d2b47c3a2aae8c0df864edae85d9bbb",
|
|
69
69
|
"homepage": "https://github.com/ReaxDev/accessible-bootstrap3#readme",
|
|
70
70
|
"license": "MIT",
|
|
71
71
|
"main": "index.js",
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
"scripts": {
|
|
90
90
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
91
91
|
},
|
|
92
|
-
"version": "0.2.
|
|
92
|
+
"version": "0.2.3"
|
|
93
93
|
}
|
data/package.json
CHANGED
|
@@ -25,7 +25,7 @@ $(document).ready(function() {
|
|
|
25
25
|
// remove open class from all .dropdown elements
|
|
26
26
|
$('.dropdown').removeClass('open');
|
|
27
27
|
// Set aria-expanded="false" after we close the dropdown.
|
|
28
|
-
$('.dropdown
|
|
28
|
+
$('.dropdown .dropdown-toggle').attr("aria-expanded", false);
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
$('.dropdown').focusin(function(){
|
|
@@ -38,7 +38,7 @@ $(document).ready(function() {
|
|
|
38
38
|
// on any of the children elements.
|
|
39
39
|
event.stopPropagation();
|
|
40
40
|
// Close sub-menu dropdown by adding display: none css.
|
|
41
|
-
$('.dropdown-submenu >
|
|
41
|
+
$('.dropdown-submenu > .sub-menu').css({"display": "none"})
|
|
42
42
|
});
|
|
43
43
|
});
|
|
44
44
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: accessible-bootstrap3-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- brayhoward
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-06-
|
|
11
|
+
date: 2016-06-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|