summaryrefslogtreecommitdiffstats
path: root/deluge/plugins/Stats/deluge_stats/data/stats.js
blob: 8f9e3f8417489c66502b6a3824f6514c00a5ad0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * Script: stats.js
 *      The javascript client-side code for the Stats plugin.
 *
 * Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
 *
 * This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
 * the additional special exception to link portions of this program with the OpenSSL library.
 * See LICENSE for more details.
 */

StatsPlugin = Ext.extend(Deluge.Plugin, {
    constructor: function(config) {
        config = Ext.apply(
            {
                name: 'Stats',
            },
            config
        );
        StatsPlugin.superclass.constructor.call(this, config);
    },

    onDisable: function() {},

    onEnable: function() {},
});
new StatsPlugin();