]> git.wh0rd.org - tt-rss.git/blob - lib/dijit/form/RadioButton.js.uncompressed.js
upgrade dojo to 1.8.3 (refs #570)
[tt-rss.git] / lib / dijit / form / RadioButton.js.uncompressed.js
1 define("dijit/form/RadioButton", [
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 });