]> git.wh0rd.org - tt-rss.git/blobdiff - js/prefs.js
remove some obsolete stuff, fix minor issues found by code analyzer
[tt-rss.git] / js / prefs.js
index 0512e0e34e76d69adbfde254c426c70447d46db2..a3f32dcbc46c12bd6d10fcb87ba1d22339453497 100755 (executable)
@@ -9,7 +9,7 @@ function notify_callback2(transport, sticky) {
        notify_info(transport.responseText, sticky);
 }
 
-function updateFeedList(sort_key) {
+function updateFeedList() {
 
        var user_search = $("feed_search");
        var search = "";
@@ -83,7 +83,7 @@ function addUser() {
 
 }
 
-function editUser(id, event) {
+function editUser(id) {
 
        var query = "backend.php?op=pref-users&method=edit&id=" +
                param_escape(id);
@@ -749,7 +749,7 @@ function updateSystemList() {
                } });
 }
 
-function selectTab(id, noupdate, method) {
+function selectTab(id, noupdate) {
        if (!noupdate) {
                notify_progress("Loading, please wait...");
 
@@ -1319,7 +1319,7 @@ function resetCatOrder() {
        });
 }
 
-function editCat(id, item, event) {
+function editCat(id, item) {
        var new_name = prompt(__('Rename category to:'), item.name);
 
        if (new_name && new_name != item.name) {
@@ -1340,7 +1340,7 @@ function editCat(id, item, event) {
        }
 }
 
-function editLabel(id, event) {
+function editLabel(id) {
        var query = "backend.php?op=pref-labels&method=edit&id=" +
                param_escape(id);