SOURCE CODE: UizeDotCom.DialogConfirm
/*______________
| ______ | U I Z E J A V A S C R I P T F R A M E W O R K
| / / | ---------------------------------------------------
| / O / | MODULE : UizeDotCom.DialogConfirm
| / / / |
| / / / /| | ONLINE : http://uize.com
| /____/ /__/_| | COPYRIGHT : (c)2008-2012 UIZE
| /___ | LICENSE : Available under MIT License or GNU General Public License
|_______________| http://uize.com/license.html
*/
/*ScruncherSettings Mappings="=e" LineCompacting="TRUE"*/
/*?
Introduction
*DEVELOPERS:* `Chris van Rensburg`
*/
Uize.module ({
name:'UizeDotCom.DialogConfirm',
superclass:'Uize.Widget.Dialog.Confirm',
required:'UizeDotCom.Templates.Dialog.Confirm',
builder:function (_superclass) {
/*** Class Constructor ***/
var _class = _superclass.subclass ();
/*** Override Initial Values for Inherited Set-Get Properties ***/
_class.set ({
built:false,
height:80,
html:UizeDotCom.Templates.Dialog.Confirm,
width:450
});
return _class;
}
});