X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fcore%2Fcommand.js;h=0a8d0988635a2d77f0172d73da18a13dfef32f32;hb=c6e377a02b54abc07129d72b632763c727476a15;hp=f365470a5032aa9ac9a265d132d702d1ddaa18e5;hpb=8761695d9b70afe75905deaac88f78c1f8aeb32d;p=ckeditor.git diff --git a/_source/core/command.js b/_source/core/command.js index f365470..0a8d098 100644 --- a/_source/core/command.js +++ b/_source/core/command.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 */ @@ -12,7 +12,7 @@ CKEDITOR.command = function( editor, commandDefinition ) if ( this.state == CKEDITOR.TRISTATE_DISABLED ) return false; - if( this.editorFocus ) // Give editor focus if necessary (#4355). + if ( this.editorFocus ) // Give editor focus if necessary (#4355). editor.focus(); return ( commandDefinition.exec.call( this, editor, data ) !== false );