1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 03:25:56 +00:00

hide more obscure preferences under "show more" checkbox in pref-prefs,

bump schema
This commit is contained in:
Andrew Dolgov
2012-08-30 13:06:58 +04:00
parent 2a3d00bbf5
commit f9ebb32ca0
7 changed files with 167 additions and 34 deletions

View File

@@ -2199,3 +2199,17 @@ function updateSelf() {
}
}
function toggleAdvancedPrefs() {
try {
notify_progress("Loading, please wait...");
new Ajax.Request("backend.php", {
parameters: "?op=pref-prefs&method=toggleadvanced",
onComplete: function(transport) {
updatePrefsList();
} });
} catch (e) {
exception_error("toggleAdvancedPrefs", e);
}
}