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

plugin.js « javascripts « ExamplePlugin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f14f0afb7969dd6182461d2c118f7fd6c551f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*!
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

$(document).ready(function () {
    /**
     * Please note that this JavaScript file will be loaded only if you
     * enable the following setting in your config:
     *
     * [Development]
     * disable_merged_assets = 1
     */

    if('undefined' != (typeof console)) { /* IE9 has no console */
        console.log('Plugin file loaded');
    }
});