summaryrefslogtreecommitdiff
path: root/lib/scripts/compatibility.js
blob: 559cc359a3698f6699e01af34be61eddb5f9ed11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*jslint sloppy: true */
/*global dw_index, DEPRECATED */

var index = {
    throbber_delay: dw_index.throbber_delay,

    toggle: function () {
        DEPRECATED();
        dw_index.toggle.apply(dw_index, arguments);
    },

    treeattach: function () {
        DEPRECATED();
        dw_index.treeattach.apply(dw_index, arguments);
    }
};