From 4da1d7c663d677347496fd8919097bfb34d293e7 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Mon, 26 May 2008 04:40:45 -0400
Subject: [PATCH] -small fix for Konqueror (#1484228)

---
 program/js/app.js |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index aabe96b..808c585 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -2973,7 +2973,7 @@
     var button, obj;
 
     if(!a_buttons || !a_buttons.length)
-      return;
+      return false;
 
     for(var n=0; n<a_buttons.length; n++)
       {
@@ -3041,7 +3041,7 @@
     var button, img;
 
     if(!a_buttons || !a_buttons.length)
-      return;
+      return false;
 
     for(var n=0; n<a_buttons.length; n++)
       {
@@ -3053,6 +3053,7 @@
           img.src = button.over;
         }
       }
+      
     };
 
   // mouse down on button

--
Gitblit v1.9.1