mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 19:55:55 +00:00
* OPML import: don't reload everything, just feed tree
* dialogs: use auto-destroying dialog for almost all dialogs instead of destroying them manually * some general dialog-related cleanup
This commit is contained in:
8
js/SingleUseDialog.js
Normal file
8
js/SingleUseDialog.js
Normal file
@@ -0,0 +1,8 @@
|
||||
/* global dijit, define */
|
||||
define(["dojo/_base/declare", "dijit/Dialog"], function (declare) {
|
||||
return declare("fox.SingleUseDialog", dijit.Dialog, {
|
||||
onHide: function() {
|
||||
this.destroyRecursive();
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user