diff options
Diffstat (limited to 'js/dojo/dijit/form/RadioButton.js')
| -rw-r--r-- | js/dojo/dijit/form/RadioButton.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/js/dojo/dijit/form/RadioButton.js b/js/dojo/dijit/form/RadioButton.js new file mode 100644 index 0000000..d6df075 --- /dev/null +++ b/js/dojo/dijit/form/RadioButton.js @@ -0,0 +1,24 @@ +//>>built +define("dijit/form/RadioButton", [ + "dojo/_base/declare", // declare + "./CheckBox", + "./_RadioButtonMixin" +], function(declare, CheckBox, _RadioButtonMixin){ + +/*===== + var CheckBox = dijit.form.CheckBox; + var _RadioButtonMixin = dijit.form._RadioButtonMixin; +=====*/ + + // module: + // dijit/form/RadioButton + // summary: + // Radio button widget + + return declare("dijit.form.RadioButton", [CheckBox, _RadioButtonMixin], { + // summary: + // Same as an HTML radio, but with fancy styling. + + baseClass: "dijitRadio" + }); +}); |
