X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fconnexionswing-ckeditor-component.git;a=blobdiff_plain;f=release%2Fplugins%2Fforms%2Fdialogs%2Fradio.js;fp=release%2Fplugins%2Fforms%2Fdialogs%2Fradio.js;h=8cd3bf49c0c3fb3168b3cb5876de2a19abb6a928;hp=ae9449ab9b30f38ee1f011bd7facf3a908447204;hb=3b35bd273a79f6b01fda7a246aed64aca147ea7a;hpb=7adcb81e4f83f98c468889aaa5a85558ba88c770 diff --git a/release/plugins/forms/dialogs/radio.js b/release/plugins/forms/dialogs/radio.js index ae9449ab..8cd3bf49 100644 --- a/release/plugins/forms/dialogs/radio.js +++ b/release/plugins/forms/dialogs/radio.js @@ -1,5 +1,5 @@ /* - Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.dialog.add("radio",function(b){return{title:b.lang.forms.checkboxAndRadio.radioTitle,minWidth:350,minHeight:140,onShow:function(){delete this.radioButton;var a=this.getParentEditor().getSelection().getSelectedElement();a&&"input"==a.getName()&&"radio"==a.getAttribute("type")&&(this.radioButton=a,this.setupContent(a))},onOk:function(){var a,c=this.radioButton,b=!c;b&&(a=this.getParentEditor(),c=a.document.createElement("input"),c.setAttribute("type","radio"));b&&a.insertElement(c);this.commitContent({element:c})},