Sha256: cc77a27ad6a4e22812d3606a942ffd88a498189aedf4b39a4ae0ca2b1ed28e44
Contents?: true
Size: 1.4 KB
Versions: 8
Compression:
Stored size: 1.4 KB
Contents
//>>built require({cache:{"url:dijit/form/templates/CheckBox.html":"<div class=\"dijit dijitReset dijitInline\" role=\"presentation\"\n\t><input\n\t \t${!nameAttrSetting} type=\"${type}\" ${checkedAttrSetting}\n\t\tclass=\"dijitReset dijitCheckBoxInput\"\n\t\tdata-dojo-attach-point=\"focusNode\"\n\t \tdata-dojo-attach-event=\"onclick:_onClick\"\n/></div>\n"}}); define("dijit/form/CheckBox",["require","dojo/_base/declare","dojo/dom-attr","dojo/has","dojo/query","dojo/ready","./ToggleButton","./_CheckBoxMixin","dojo/text!./templates/CheckBox.html","dojo/NodeList-dom"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9){ if(_4("dijit-legacy-requires")){ _6(0,function(){ var _a=["dijit/form/RadioButton"]; _1(_a); }); } return _2("dijit.form.CheckBox",[_7,_8],{templateString:_9,baseClass:"dijitCheckBox",_setValueAttr:function(_b,_c){ if(typeof _b=="string"){ this.inherited(arguments); _b=true; } if(this._created){ this.set("checked",_b,_c); } },_getValueAttr:function(){ return (this.checked?this.value:false); },_setIconClassAttr:null,postMixInProperties:function(){ this.inherited(arguments); this.checkedAttrSetting=this.checked?"checked":""; },_fillContent:function(){ },_onFocus:function(){ if(this.id){ _5("label[for='"+this.id+"']").addClass("dijitFocusedLabel"); } this.inherited(arguments); },_onBlur:function(){ if(this.id){ _5("label[for='"+this.id+"']").removeClass("dijitFocusedLabel"); } this.inherited(arguments); }}); });
Version data entries
8 entries across 8 versions & 2 rubygems