You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
352 B
16 lines
352 B
define([ |
|
"dojo/_base/declare", // declare |
|
"./CheckBox", |
|
"./_RadioButtonMixin" |
|
], function(declare, CheckBox, _RadioButtonMixin){ |
|
|
|
// module: |
|
// dijit/form/RadioButton |
|
|
|
return declare("dijit.form.RadioButton", [CheckBox, _RadioButtonMixin], { |
|
// summary: |
|
// Same as an HTML radio, but with fancy styling. |
|
|
|
baseClass: "dijitRadio" |
|
}); |
|
});
|
|
|