summaryrefslogtreecommitdiff
path: root/js/SingleUseDialog.js
blob: 944f24c6f58667cf74b694bd4efe6247205c306e (plain)
1
2
3
4
5
6
7
8
/* global dijit, define */
define(["dojo/_base/declare", "dijit/Dialog"], function (declare) {
	return declare("fox.SingleUseDialog", dijit.Dialog, {
      onHide: function() {
         this.destroyRecursive();
      }
	});
});