source:
Dev/trunk/src/client/dijit/form/RadioButton.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 352 bytes |
Rev | Line | |
---|---|---|
[483] | 1 | define([ |
2 | "dojo/_base/declare", // declare | |
3 | "./CheckBox", | |
4 | "./_RadioButtonMixin" | |
5 | ], function(declare, CheckBox, _RadioButtonMixin){ | |
6 | ||
7 | // module: | |
8 | // dijit/form/RadioButton | |
9 | ||
10 | return declare("dijit.form.RadioButton", [CheckBox, _RadioButtonMixin], { | |
11 | // summary: | |
12 | // Same as an HTML radio, but with fancy styling. | |
13 | ||
14 | baseClass: "dijitRadio" | |
15 | }); | |
16 | }); |
Note: See TracBrowser
for help on using the repository browser.