mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-06 14:17:27 +02:00
* dialogs: use auto-destroying dialog for almost all dialogs instead of destroying them manually * some general dialog-related cleanup
9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
/* global dijit, define */
|
|
define(["dojo/_base/declare", "dijit/Dialog"], function (declare) {
|
|
return declare("fox.SingleUseDialog", dijit.Dialog, {
|
|
onHide: function() {
|
|
this.destroyRecursive();
|
|
}
|
|
});
|
|
});
|