]> git.wh0rd.org - chrome-ext/music-player-client.git/blobdiff - main.js
compile javascript files with the closure compiler
[chrome-ext/music-player-client.git] / main.js
diff --git a/main.js b/main.js
index 7e12e9fe4948b04d5d10b512e84475bd252753d8..c0436df50ddc4ad0faf2f6eb8a19d469e211ca8b 100644 (file)
--- a/main.js
+++ b/main.js
@@ -151,7 +151,7 @@ function do_refresh() {
 }
 
 function update_refresh_timer() {
-       if (refresh_id != NaN)
+       if (!isNaN(refresh_id))
                window.clearTimeout(refresh_id);
        var rate = window['opts_refresh'].value * 1000;
        if (rate > 0)
@@ -239,7 +239,12 @@ function update_ui(state, cmd) {
                return;
        }
 
-       var time = state.time.split(':');
+       var time;
+       if ('time' in state)
+               // When stopped, there is no time field at all.
+               time = state.time.split(':');
+       else
+               time = [0, 0];
        window['ui_mpc_seekcur'].max = time[1];
        window['ui_mpc_seekcur'].value = time[0];