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

initial for JS strict mode

This commit is contained in:
Andrew Dolgov
2018-03-08 18:33:42 +03:00
parent c9a5e5aa28
commit 3009ecc44f
7 changed files with 11 additions and 10 deletions

View File

@@ -628,7 +628,7 @@ function init_second_stage() {
var hotkeys = getInitParam("hotkeys");
var tmp = [];
for (sequence in hotkeys[1]) {
for (var sequence in hotkeys[1]) {
filtered = sequence.replace(/\|.*$/, "");
tmp[filtered] = hotkeys[1][sequence];
}
@@ -752,7 +752,7 @@ function parse_runtime_info(data) {
//console.log("parsing runtime info...");
for (k in data) {
for (var k in data) {
var v = data[k];
// console.log("RI: " + k + " => " + v);
@@ -899,7 +899,7 @@ function hotkey_handler(e) {
var hotkey_action = false;
var hotkeys = getInitParam("hotkeys");
for (sequence in hotkeys[1]) {
for (var sequence in hotkeys[1]) {
if (sequence == hotkey) {
hotkey_action = hotkeys[1][sequence];
break;
@@ -1076,11 +1076,11 @@ function update_random_feed() {
}
function hash_get(key) {
kv = window.location.hash.substring(1).toQueryParams();
var kv = window.location.hash.substring(1).toQueryParams();
return kv[key];
}
function hash_set(key, value) {
kv = window.location.hash.substring(1).toQueryParams();
var kv = window.location.hash.substring(1).toQueryParams();
kv[key] = value;
window.location.hash = $H(kv).toQueryString();
}