summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-02 10:33:58 +0300
committerAndrew Dolgov <[email protected]>2018-12-02 10:33:58 +0300
commit874560db547f718b82d77657dc019d840c30e0ed (patch)
tree6ca8764aa601c94303a402d370297c5a25b4897e /js/prefs.js
parent2f85b50e3607b2b159989c493ac8f8c46a389559 (diff)
remove obsolete row selection functions
move getUrlParam() to Utils
Diffstat (limited to 'js/prefs.js')
-rwxr-xr-xjs/prefs.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/prefs.js b/js/prefs.js
index 40068b95c..f12c31441 100755
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -69,17 +69,17 @@ const App = {
Utils.setLoadingProgress(50);
notify("");
- let tab = getURLParam('tab');
+ let tab = Utils.urlParam('tab');
if (tab) {
tab = dijit.byId(tab + "Tab");
if (tab) dijit.byId("pref-tabs").selectChild(tab);
}
- const method = getURLParam('method');
+ const method = Utils.urlParam('method');
if (method == 'editFeed') {
- const param = getURLParam('methodparam');
+ const param = Utils.urlParam('methodparam');
window.setTimeout(function () {
CommonDialogs.editFeed(param)