Fix Standby Indicator on non-Mozilla Browsers (it's not trim() it's strip()...)....
[vuplus_dvbapp-plugin] / 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 {