xref: /dokuwiki/lib/scripts/compatibility.js (revision cd06d16faa924afeb14f864b058e01ce8867057c)
1/*jslint sloppy: true */
2/*global dw_index, DEPRECATED */
3
4var index = {
5    throbber_delay: dw_index.throbber_delay,
6
7    toggle: function () {
8        DEPRECATED();
9        dw_index.toggle.apply(dw_index, arguments);
10    },
11
12    treeattach: function () {
13        DEPRECATED();
14        dw_index.treeattach.apply(dw_index, arguments);
15    }
16};
17