mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-18 02:31:29 +00:00
update dojo to 1.7.3
This commit is contained in:
23
lib/dijit/form/RadioButton.js.uncompressed.js
Normal file
23
lib/dijit/form/RadioButton.js.uncompressed.js
Normal file
@@ -0,0 +1,23 @@
|
||||
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"
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user