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

declare globals with let

This commit is contained in:
Andrew Dolgov
2018-11-29 20:09:25 +03:00
parent 424e28db6b
commit 8572e0108a
4 changed files with 33 additions and 33 deletions

View File

@@ -1,9 +1,9 @@
var init_params = new Array();
let init_params = new Array();
var hotkey_prefix = false;
var hotkey_prefix_pressed = false;
let hotkey_prefix = false;
let hotkey_prefix_pressed = false;
var seq = "";
let seq = "";
function notify_callback2(transport, sticky) {
notify_info(transport.responseText, sticky);