mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:35:56 +00:00
remove obsolete row selection functions
move getUrlParam() to Utils
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user