]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl update
authorEric Bollengier <eric@eb.homelinux.org>
Sun, 3 May 2009 13:25:59 +0000 (13:25 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Sun, 3 May 2009 13:25:59 +0000 (13:25 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8784 91ce42f0-d328-0410-95d8-f526ca767f89

gui/bweb/html/bweb.js

index c1d4175e863e5843d8cf1313f84061f6689ea666..00b141a94aac2ec10994e9b8bb5c6bb9fea2ed19 100644 (file)
@@ -335,13 +335,17 @@ function bweb_get_job_img(status, errors, type)
   return bweb_root + ret;
 }
 
-function toggle_display(id) 
+function toggle_display(id, arrow
 {
+   var a = document.getElementById(arrow);
    var e = document.getElementById(id);
-   if(e.style.display == 'block')
+   if(e.style.display == 'block') {
       e.style.display = 'none';
-   else
+      a.src = '/bweb/right.gif';
+   } else {
       e.style.display = 'block';
+      a.src = '/bweb/down.gif';
+   }
 }
 
 function search_media()