summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-13 00:20:53 +0400
committerAndrew Dolgov <[email protected]>2011-12-13 00:20:53 +0400
commit3f3630529e1e7a0adf2ce0022596006cfcba0089 (patch)
treea106a22ca054baf8523f4d258b36a654909768c9 /js/prefs.js
parent667a82727cd95cc75e006b8509b6249e3f7f46e6 (diff)
implement tiny-OOP routing
Diffstat (limited to 'js/prefs.js')
-rw-r--r--js/prefs.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/prefs.js b/js/prefs.js
index 760441a3d..98b581ca1 100644
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -1229,7 +1229,7 @@ function editFeedCats() {
function showInactiveFeeds() {
try {
- var query = "backend.php?op=dlg&id=inactiveFeeds";
+ var query = "backend.php?op=dlg&method=inactiveFeeds";
if (dijit.byId("inactiveFeedsDlg"))
dijit.byId("inactiveFeedsDlg").destroyRecursive();
@@ -1470,7 +1470,7 @@ function editProfiles() {
if (dijit.byId("profileEditDlg"))
dijit.byId("profileEditDlg").destroyRecursive();
- var query = "backend.php?op=dlg&id=editPrefProfiles";
+ var query = "backend.php?op=dlg&method=editPrefProfiles";
dialog = new dijit.Dialog({
id: "profileEditDlg",
@@ -1773,7 +1773,7 @@ function clearTwitterCredentials() {
function customizeCSS() {
try {
- var query = "backend.php?op=dlg&id=customizeCSS";
+ var query = "backend.php?op=dlg&method=customizeCSS";
if (dijit.byId("cssEditDlg"))
dijit.byId("cssEditDlg").destroyRecursive();
@@ -1815,7 +1815,7 @@ function getSelectedInstances() {
function addInstance() {
try {
- var query = "backend.php?op=dlg&id=addInstance";
+ var query = "backend.php?op=dlg&method=addInstance";
if (dijit.byId("instanceAddDlg"))
dijit.byId("instanceAddDlg").destroyRecursive();