]> git.wh0rd.org - chrome-ext/music-player-client.git/blobdiff - main.js
have sliders send updates immediately (like when using the mouse)
[chrome-ext/music-player-client.git] / main.js
diff --git a/main.js b/main.js
index 1e83a3b2b6c0b996f34e4b30e12478ccea15554d..b9d188deced4318cfd565942404e11cadabc3b32 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)
@@ -193,7 +193,7 @@ function init_ui(local_keys, sync_keys, options) {
                'seekcur', 'setvol', 'single', 'stop',
        ].forEach(function(id) {
                var ele = window['ui_mpc_' + id] = document.getElementById(id);
-               ele.onclick = window['tramp_mpc_' + id];
+               ele.onchange = ele.onclick = window['tramp_mpc_' + id];
                ele.title = id;
        });