diff options
author | Andreas Gohr <andi@splitbrain.org> | 2024-09-08 18:15:53 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2024-09-08 18:15:53 +0200 |
commit | e44b94a4bd0679ff22e14add34b60590fe7077d3 (patch) | |
tree | f850096e4c7d5645ecd0bf5b33a9f6ef18607113 /lib/scripts/tree.js | |
parent | 944e9ba7254387adb60f253b0d8796f2276096b1 (diff) | |
download | dokuwiki-e44b94a4bd0679ff22e14add34b60590fe7077d3.tar.gz dokuwiki-e44b94a4bd0679ff22e14add34b60590fe7077d3.zip |
Revert "use a dispatcher to access static image files"
This reverts commit 944e9ba7254387adb60f253b0d8796f2276096b1.
It was accidentally pused to master before review. A PR with a revert
for the revert will be pushed shortly.
Diffstat (limited to 'lib/scripts/tree.js')
-rw-r--r-- | lib/scripts/tree.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scripts/tree.js b/lib/scripts/tree.js index e0069ad45..9b2d24556 100644 --- a/lib/scripts/tree.js +++ b/lib/scripts/tree.js @@ -81,7 +81,7 @@ jQuery.fn.dw_tree = function(overrides) { $listitem.append($sublist); timeout = window.setTimeout( - bind(show_sublist, '<li aria-busy="true"><img src="' + DOKU_BASE + 'lib/exe/image.php/throbber.gif" alt="loading..." title="loading..." /></li>'), dw_tree.throbber_delay); + bind(show_sublist, '<li aria-busy="true"><img src="' + DOKU_BASE + 'lib/images/throbber.gif" alt="loading..." title="loading..." /></li>'), dw_tree.throbber_delay); dw_tree.load_data(function (data) { window.clearTimeout(timeout); |