Fix Standby Indicator on non-Mozilla Browsers (it's not trim() it's strip()...)....
authorStephan Reichholf <sreichholf@users.schwerkraft.elitedvb.net>
Mon, 2 Nov 2009 17:12:17 +0000 (17:12 +0000)
committerStephan Reichholf <sreichholf@users.schwerkraft.elitedvb.net>
Mon, 2 Nov 2009 17:12:17 +0000 (17:12 +0000)
webinterface/src/web-data/tools.js

index 8477dc3..2481c9d 100644 (file)
@@ -83,7 +83,7 @@ function incomingPowerState(request){
        
        img = $('powerState');
        
-       if(standby.trim() == "false"){
+       if(standby.strip() == "false"){
                img.src = "/web-data/img/running.png";
                img.title = "Box is running";
        } else {