Sha256: adcd72ebdd2d442f76e80a8ba779e18d906e83a6e93efc2242a1d94e2793a1f9

Contents?: true

Size: 429 Bytes

Versions: 14

Compression:

Stored size: 429 Bytes

Contents

var navbarButton = document.getElementById('navbar-toggle');
var navMain = document.getElementById('navbar-entries');
var navbarToggle = false;

var toggleNav = function() {
    navbarToggle = !navbarToggle;

    if (navbarToggle) {
        navMain.classList.add('navbar__entries--active');
    }
    else {
        navMain.classList.remove('navbar__entries--active');
    }
}

navbarButton.addEventListener('click', toggleNav);

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
ovh-jekyll-doc-theme-0.2.3 assets/js/scripts.js
ovh-jekyll-doc-theme-0.2.2 assets/js/scripts.js
ovh-jekyll-doc-theme-0.2.1 assets/js/scripts.js
ovh-jekyll-doc-theme-0.2.0 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.9 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.8 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.7 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.6 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.5 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.4 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.3 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.2 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.1 assets/js/scripts.js
ovh-jekyll-doc-theme-0.1.0 assets/js/scripts.js