summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
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)