init
This commit is contained in:
29
public/tinymce/classes/ui/Radio.js
Normal file
29
public/tinymce/classes/ui/Radio.js
Normal file
@ -0,0 +1,29 @@
|
||||
/**
|
||||
* 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"
|
||||
}
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user