source: Dev/trunk/src/client/dijit/form/RadioButton.js @ 483

Last change on this file since 483 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 352 bytes
Line 
1define([
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.