blob: d6df0750af4737c699647c24195d0399471a679b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"
});
});
|