Sha256: baef264e82f05badbf85eeaa3ee6b3ee43b0836ac4171fae333be661dd592e1d

Contents?: true

Size: 1.99 KB

Versions: 53

Compression:

Stored size: 1.99 KB

Contents

/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

CKEDITOR.dialog.add('radio',function(a){return{title:a.lang.checkboxAndRadio.radioTitle,minWidth:350,minHeight:140,onShow:function(){var c=this;delete c.radioButton;var b=c.getParentEditor().getSelection().getSelectedElement();if(b&&b.getName()=='input'&&b.getAttribute('type')=='radio'){c.radioButton=b;c.setupContent(b);}},onOk:function(){var b,c=this.radioButton,d=!c;if(d){b=this.getParentEditor();c=b.document.createElement('input');c.setAttribute('type','radio');}if(d)b.insertElement(c);this.commitContent({element:c});},contents:[{id:'info',label:a.lang.checkboxAndRadio.radioTitle,title:a.lang.checkboxAndRadio.radioTitle,elements:[{id:'name',type:'text',label:a.lang.common.name,'default':'',accessKey:'N',setup:function(b){this.setValue(b.data('cke-saved-name')||b.getAttribute('name')||'');},commit:function(b){var c=b.element;if(this.getValue())c.data('cke-saved-name',this.getValue());else{c.data('cke-saved-name',false);c.removeAttribute('name');}}},{id:'value',type:'text',label:a.lang.checkboxAndRadio.value,'default':'',accessKey:'V',setup:function(b){this.setValue(b.getAttribute('value')||'');},commit:function(b){var c=b.element;if(this.getValue())c.setAttribute('value',this.getValue());else c.removeAttribute('value');}},{id:'checked',type:'checkbox',label:a.lang.checkboxAndRadio.selected,'default':'',accessKey:'S',value:'checked',setup:function(b){this.setValue(b.getAttribute('checked'));},commit:function(b){var c=b.element;if(!(CKEDITOR.env.ie||CKEDITOR.env.opera)){if(this.getValue())c.setAttribute('checked','checked');else c.removeAttribute('checked');}else{var d=c.getAttribute('checked'),e=!!this.getValue();if(d!=e){var f=CKEDITOR.dom.element.createFromHtml('<input type="radio"'+(e?' checked="checked"':'')+'></input>',a.document);c.copyAttributes(f,{type:1,checked:1});f.replace(c);a.getSelection().selectElement(f);b.element=f;}}}}]}]};});

Version data entries

53 entries across 47 versions & 9 rubygems

Version Path
erp_app-3.1.16 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.15 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.14 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.13 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.12 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.11 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.10 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.9 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.8 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.7 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.6 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.5 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.4 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.3 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.1.2 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
erp_app-3.0.16 public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/radio.js
ab_admin-0.2.2 lib/generators/ab_admin/ckeditor_assets/templates/ckeditor/plugins/forms/dialogs/radio.js
ab_admin-0.2.2 spec/dummy/public/javascripts/ckeditor/plugins/forms/dialogs/radio.js
ab_admin-0.2.1 lib/generators/ab_admin/ckeditor_assets/templates/ckeditor/plugins/forms/dialogs/radio.js
ab_admin-0.2.1 spec/dummy/public/javascripts/ckeditor/plugins/forms/dialogs/radio.js