Welcome to mirror list, hosted at ThFree Co, Russian Federation.

menu.js « scripts « ngax « webroot « Server « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6f0e016f5fa8d1de393d398a68dbdae19130a82 (plain)
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function() {
    $('html').on('click', function(e) {
        $('#mainmenu').removeClass('mobile-open');
    });
    
    $('body').on('click', '.menubutton', function(e) {
        e.stopPropagation();
        e.preventDefault();
        $('#mainmenu').toggleClass('mobile-open');
    });
});