X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fforms%2Fplugin.js;h=5978e0bcb75ea4dcec48e87934e5166e66f07cc2;hb=refs%2Ftags%2Fv3.2.2;hp=e84de254d5e5fa039792cb865f8d19ff98a2dfc3;hpb=7cd80714081a8ffdf4a1a8d2c72f120ed5ef3d6d;p=ckeditor.git diff --git a/_source/plugins/forms/plugin.js b/_source/plugins/forms/plugin.js index e84de25..5978e0b 100644 --- a/_source/plugins/forms/plugin.js +++ b/_source/plugins/forms/plugin.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -166,7 +166,7 @@ CKEDITOR.plugins.add( 'forms', afterInit : function( editor ) { // Cleanup certain IE form elements default values. - if( CKEDITOR.env.ie ) + if ( CKEDITOR.env.ie ) { var dataProcessor = editor.dataProcessor, htmlFilter = dataProcessor && dataProcessor.htmlFilter; @@ -179,7 +179,7 @@ CKEDITOR.plugins.add( 'forms', { var attrs = input.attributes, type = attrs.type; - if( type == 'checkbox' || type == 'radio' ) + if ( type == 'checkbox' || type == 'radio' ) attrs.value == 'on' && delete attrs.value; } }