1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:45:56 +00:00

strict js: various var fixes

This commit is contained in:
wn_
2018-03-14 20:02:21 -05:00
parent ab688e963d
commit a972ab45bd
3 changed files with 5 additions and 5 deletions

View File

@@ -610,7 +610,7 @@ function init_second_stage() {
dijit.getEnclosingWidget(toolbar.order_by).attr('value',
getInitParam("default_view_order_by"));
feeds_sort_by_unread = getInitParam("feeds_sort_by_unread") == 1;
var feeds_sort_by_unread = getInitParam("feeds_sort_by_unread") == 1;
var hash_feed_id = hash_get('f');
var hash_feed_is_cat = hash_get('c') == "1";
@@ -629,7 +629,7 @@ function init_second_stage() {
var tmp = [];
for (var sequence in hotkeys[1]) {
filtered = sequence.replace(/\|.*$/, "");
var filtered = sequence.replace(/\|.*$/, "");
tmp[filtered] = hotkeys[1][sequence];
}