jumbo-jekyll-theme 1.9.5 → 1.9.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/nav.html +1 -1
- data/assets/js/app/main.js +1 -0
- 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: b39f9b4e2d42b3d6d935049f3e032b5f5b3a837c
|
4
|
+
data.tar.gz: 9f19a345d738fbe0683e70df1c4f7b3aee914aa8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a54f22481388032dfb1f22aa2be2276861792d9ba90d6f2ad8767c47a58a4889ee30b2d6fa168ea2f608181eb95e7b676794bebf991123be9057aabf0d108f29
|
7
|
+
data.tar.gz: 1cbc023f52ec997edc71c98b1602f8b76eb6cf4c513f86a2713812c1f480948cd16137bc98b3ec0a8a242b09321a131da195103a76a74d1e3a69d842a2818ba2
|
data/_includes/nav.html
CHANGED
@@ -51,7 +51,7 @@ navbar-inverse navbar-static" id="main-navigation">
|
|
51
51
|
{% for menu_option in section.options %}
|
52
52
|
{% if menu_option.options %}
|
53
53
|
<li class="dropdown-submenu sub-menu {% if section.left %} pull-left {% endif %}">
|
54
|
-
<a tabindex="-1" {% if menu_option.url %}href="{{menu_option.url}}"{% endif %} class="
|
54
|
+
<a tabindex="-1" {% if menu_option.url %}href="{{menu_option.url}}"{% endif %} class="mobile-link-inactive">{{menu_option.text}}</a>
|
55
55
|
<ul class="dropdown-menu sub-menu">
|
56
56
|
{% for sub-option in menu_option.options %}
|
57
57
|
{% if sub-option.options %}
|
data/assets/js/app/main.js
CHANGED
@@ -17,6 +17,7 @@ $(document).ready(function () {
|
|
17
17
|
|
18
18
|
// Toggle the sub menu when clicked.
|
19
19
|
$('.dropdown-submenu.sub-menu a').on("click", function(e){
|
20
|
+
$(".dropdown-submenu.sub-menu > .dropdown-menu.sub-menu").hide();
|
20
21
|
$(this).next('ul').toggle();
|
21
22
|
e.stopPropagation();
|
22
23
|
});
|