prefs: reload after OPML import
This commit is contained in:
parent
bfe162fce2
commit
12b7b90c70
10
js/prefs.js
10
js/prefs.js
|
@ -740,15 +740,10 @@ function opmlImportComplete(iframe) {
|
||||||
title: __("OPML Import"),
|
title: __("OPML Import"),
|
||||||
style: "width: 600px",
|
style: "width: 600px",
|
||||||
onCancel: function () {
|
onCancel: function () {
|
||||||
updateFeedList();
|
window.location.reload();
|
||||||
updateFilterList();
|
|
||||||
updateLabelList();
|
|
||||||
},
|
},
|
||||||
execute: function () {
|
execute: function () {
|
||||||
updateFeedList();
|
window.location.reload();
|
||||||
updateFilterList();
|
|
||||||
updateLabelList();
|
|
||||||
this.hide();
|
|
||||||
},
|
},
|
||||||
content: content
|
content: content
|
||||||
});
|
});
|
||||||
|
@ -876,6 +871,7 @@ function init() {
|
||||||
"dijit/form/CheckBox",
|
"dijit/form/CheckBox",
|
||||||
"dijit/form/DropDownButton",
|
"dijit/form/DropDownButton",
|
||||||
"dijit/form/FilteringSelect",
|
"dijit/form/FilteringSelect",
|
||||||
|
"dijit/form/MultiSelect",
|
||||||
"dijit/form/Form",
|
"dijit/form/Form",
|
||||||
"dijit/form/RadioButton",
|
"dijit/form/RadioButton",
|
||||||
"dijit/form/ComboButton",
|
"dijit/form/ComboButton",
|
||||||
|
|
Loading…
Reference in New Issue