]> git.wh0rd.org - tt-rss.git/blobdiff - js/prefs.js
feed tree: only run animation for appearing unread counters to prevent clashes with...
[tt-rss.git] / js / prefs.js
index fdbb51ec00f9a5592630b7cb665ada884a428a12..23d43f366d6433ccaab7f7e5131d400411f5a2d4 100755 (executable)
@@ -901,10 +901,10 @@ function init_second_stage() {
                if (method == 'editFeed') {
                        var param = getURLParam('methodparam');
 
-                       window.setTimeout('editFeed(' + param + ')', 100);
+                       window.setTimeout(function() { editFeed(param) }, 100);
                }
 
-               setTimeout("hotkey_prefix_timeout()", 5*1000);
+               setTimeout(hotkey_prefix_timeout, 5*1000);
 
        } catch (e) {
                exception_error("init_second_stage", e);
@@ -919,6 +919,7 @@ function init() {
                        "dojo/ready",
                        "dojo/parser",
                        "dojo/_base/loader",
+                       "dojo/_base/html",
                        "dijit/ColorPalette",
                        "dijit/Dialog",
                        "dijit/form/Button",
@@ -1808,4 +1809,7 @@ function clearSqlLog() {
        }
 }
 
+function updateSelectedPrompt() {
+       // no-op shim for toggleSelectedRow()
+}