1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 16:21:28 +00:00

prefs tab reloading fixes

This commit is contained in:
Andrew Dolgov
2010-11-17 16:11:13 +03:00
parent 72cbe82890
commit e7435df04a
2 changed files with 14 additions and 23 deletions

View File

@@ -16,8 +16,8 @@ function feedlist_callback2(transport) {
try {
var container = $('feedConfigTab');
container.innerHTML=transport.responseText;
dijit.byId('feedConfigTab').attr('content', transport.responseText);
selectTab("feedConfig", true);
if (caller_subop) {
@@ -37,8 +37,7 @@ function feedlist_callback2(transport) {
}
function filterlist_callback2(transport) {
var container = $('filterConfigTab');
container.innerHTML=transport.responseText;
dijit.byId('filterConfigTab').attr('content', transport.responseText);
notify("");
remove_splash();
}
@@ -70,14 +69,13 @@ function labellist_callback2(transport) {
try {
var container = $('labelConfigTab');
closeInfoBox();
container.innerHTML=transport.responseText;
dijit.byId('labelConfigTab').attr('content', transport.responseText);
closeInfoBox();
init_label_inline_editor();
init_label_inline_editor();
notify("");
remove_splash();
notify("");
remove_splash();
} catch (e) {
exception_error("labellist_callback2", e);
@@ -86,12 +84,10 @@ function labellist_callback2(transport) {
function userlist_callback2(transport) {
try {
var container = $('userConfigTab');
if (transport.readyState == 4) {
container.innerHTML=transport.responseText;
notify("");
remove_splash();
}
dijit.byId('userConfigTab').attr('content', transport.responseText);
notify("");
remove_splash();
} catch (e) {
exception_error("userlist_callback2", e);
}
@@ -99,8 +95,8 @@ function userlist_callback2(transport) {
function prefslist_callback2(transport) {
try {
var container = $('genConfigTab');
container.innerHTML=transport.responseText;
dijit.byId('genConfigTab').attr('content', transport.responseText);
notify("");
remove_splash();
} catch (e) {