src/pyams_skin/resources/js/ext/tinymce/dev/classes/ui/Radio.js
changeset 557 bca7a7e058a3
equal deleted inserted replaced
-1:000000000000 557:bca7a7e058a3
       
     1 /**
       
     2  * Radio.js
       
     3  *
       
     4  * Copyright, Moxiecode Systems AB
       
     5  * Released under LGPL License.
       
     6  *
       
     7  * License: http://www.tinymce.com/license
       
     8  * Contributing: http://www.tinymce.com/contributing
       
     9  */
       
    10 
       
    11 /**
       
    12  * Creates a new radio button.
       
    13  *
       
    14  * @-x-less Radio.less
       
    15  * @class tinymce.ui.Radio
       
    16  * @extends tinymce.ui.Checkbox
       
    17  */
       
    18 define("tinymce/ui/Radio", [
       
    19 	"tinymce/ui/Checkbox"
       
    20 ], function(Checkbox) {
       
    21 	"use strict";
       
    22 
       
    23 	return Checkbox.extend({
       
    24 		Defaults: {
       
    25 			classes: "radio",
       
    26 			role: "radio"
       
    27 		}
       
    28 	});
       
    29 });