| 1234567891011121314151617181920212223242526272829 |
- /**
- * Radio.js
- *
- * Copyright, Moxiecode Systems AB
- * Released under LGPL License.
- *
- * License: http://www.tinymce.com/license
- * Contributing: http://www.tinymce.com/contributing
- */
- /**
- * Creates a new radio button.
- *
- * @-x-less Radio.less
- * @class tinymce.ui.Radio
- * @extends tinymce.ui.Checkbox
- */
- define("tinymce/ui/Radio", [
- "tinymce/ui/Checkbox"
- ], function(Checkbox) {
- "use strict";
- return Checkbox.extend({
- Defaults: {
- classes: "radio",
- role: "radio"
- }
- });
- });
|