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

menu_init.js « templates « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e9c325301eb030b41bdfde6a34772a4164bf546 (plain)
1
2
3
4
5
6
7
8
$(document).ready(function () {
    if ($('.nav').size()) {
        piwikMenu = new menu();
        piwikMenu.init();
        piwikMenu.loadFirstSection();
        broadcast.init();
    }
});