summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <noreply@fakecake.org>2017-01-22 10:19:11 +0300
committerAndrew Dolgov <noreply@fakecake.org>2017-01-22 10:19:11 +0300
commit4441fc6f3b5d2ae0df5c0a8797317c632b1d4d23 (patch)
treef31b865743d3ffa96f4988c68f6521942cf91382 /js/prefs.js
parent967f0619c781a01a67f1d3c69946f63d5a4c1e54 (diff)
parent7262c1726f1b900d2211d4cfb9054aefb93b991e (diff)
Merge branch 'master' of git.tt-rss.org:fox/tt-rss
Diffstat (limited to 'js/prefs.js')
-rwxr-xr-xjs/prefs.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/prefs.js b/js/prefs.js
index 69e779d45..23d43f366 100755
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -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);