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

override.js « screenshot-override « resources « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f142f3bbd4aea72de033a232381fae150ee29b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$(document).ready(function () {
    $('.ui-inline-help:contains(UTC time is)').hide();

    $('[notification-id=ControllerAdmin_HttpIsUsed]').hide();

    $.fx.off = true;

    // disable materialize animations (Materialize version > 1)
    if (typeof M !== 'undefined' && M.anime) {
        var oldAnime = M.anime;
        M.anime = function (params) {
            if (!params) {
                params = {};
            }
            params.duration = 0;
            return oldAnime(params);
        };
    } else if ($.Velocity) {
        $.Velocity.mock = true;
    }
});