//>>built require({cache:{"url:dijit/form/templates/DropDownButton.html":"\n"}}); define("dijit/form/DropDownButton",["dojo/_base/declare","dojo/_base/lang","dojo/query","../registry","../popup","./Button","../_Container","../_HasDropDown","dojo/text!./templates/DropDownButton.html"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9){ return _1("dijit.form.DropDownButton",[_6,_7,_8],{baseClass:"dijitDropDownButton",templateString:_9,_fillContent:function(){ if(this.srcNodeRef){ var _a=_3("*",this.srcNodeRef); this.inherited(arguments,[_a[0]]); this.dropDownContainer=this.srcNodeRef; } },startup:function(){ if(this._started){ return; } if(!this.dropDown&&this.dropDownContainer){ var _b=_3("[widgetId]",this.dropDownContainer)[0]; this.dropDown=_4.byNode(_b); delete this.dropDownContainer; } if(this.dropDown){ _5.hide(this.dropDown); } this.inherited(arguments); },isLoaded:function(){ var _c=this.dropDown; return (!!_c&&(!_c.href||_c.isLoaded)); },loadDropDown:function(_d){ var _e=this.dropDown; var _f=_e.on("load",_2.hitch(this,function(){ _f.remove(); _d(); })); _e.refresh(); },isFocusable:function(){ return this.inherited(arguments)&&!this._mouseDown; }}); });