From 721f6213cc1343e4ab613a89be55d37dd0780244 Mon Sep 17 00:00:00 2001 From: Dieter Hametner Date: Mon, 17 Sep 2007 22:23:40 +0000 Subject: - Moved images from compiled in image dir to data dir 'img'. - Fixed MapUrl entries to the new image location - Adapted some pages for the new image locations. - Added a preload functionalty to fill file cache at plugin startup. --- javascript/treeview.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'javascript') diff --git a/javascript/treeview.js b/javascript/treeview.js index 3f6fea9..e9edbdd 100644 --- a/javascript/treeview.js +++ b/javascript/treeview.js @@ -70,14 +70,14 @@ function Toggle(node) if (sibling.style.display == 'none') { if (imgChild != null) - setImages(imgChild, "minus.png", "folder_open.png"); + setImages(imgChild, "img/minus.png", "img/folder_open.png"); sibling.style.display = 'block'; } // Collapse the branch if it IS visible else { if (imgChild != null) - setImages(imgChild, "plus.png", "folder_closed.png"); + setImages(imgChild, "img/plus.png", "img/folder_closed.png"); sibling.style.display = 'none'; } } -- cgit v1.2.3