X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fcore%2Fckeditor_base.js;h=419ee44679f78f2fb219d9f1496f34b658a48728;hp=3a71283ec3fa62a47d5ea40608663ed704c18034;hb=4e90e78dc97789709ee7404359a5517540c27553;hpb=8f6c203fdaa543c3bca40baea6ae4ddcdf1a77f5 diff --git a/_source/core/ckeditor_base.js b/_source/core/ckeditor_base.js index 3a71283..419ee44 100644 --- a/_source/core/ckeditor_base.js +++ b/_source/core/ckeditor_base.js @@ -9,10 +9,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license */ // #### Compressed Code -// Must be updated on changes in the script, as well as updated in the +// Must be updated on changes in the script as well as updated in the // ckeditor_source.js and ckeditor_basic_source.js files. -// if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.5.2',rev:'6450',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f=0?'&':'?')+('t=')+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})(); +// if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.5.3',rev:'6655',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f=0?'&':'?')+('t=')+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})(); // #### Raw code // ATTENTION: read the above "Compressed Code" notes when changing this code. @@ -33,16 +33,16 @@ if ( !window.CKEDITOR ) /** * A constant string unique for each release of CKEditor. Its value * is used, by default, to build the URL for all resources loaded - * by the editor code, guaranteing clean cache results when + * by the editor code, guaranteeing clean cache results when * upgrading. * @type String * @example * alert( CKEDITOR.timestamp ); // e.g. '87dm' */ // The production implementation contains a fixed timestamp, unique - // for each release, generated by the releaser. + // for each release and generated by the releaser. // (Base 36 value of each component of YYMMDDHH - 4 chars total - e.g. 87bm == 08071122) - timestamp : 'B1GG4Z6', + timestamp : 'B37D54V', /** * Contains the CKEditor version number. @@ -50,7 +50,7 @@ if ( !window.CKEDITOR ) * @example * alert( CKEDITOR.version ); // e.g. 'CKEditor 3.4.1' */ - version : '3.5.2', + version : '3.5.3', /** * Contains the CKEditor revision number. @@ -60,10 +60,10 @@ if ( !window.CKEDITOR ) * @example * alert( CKEDITOR.revision ); // e.g. '3975' */ - revision : '6450', + revision : '6655', /** - * Private object used to hold core stuff. It should not be used out of + * Private object used to hold core stuff. It should not be used outside of * the API code as properties defined here may change at any time * without notice. * @private @@ -71,7 +71,7 @@ if ( !window.CKEDITOR ) _ : {}, /** - * Indicates the API loading status. The following status are available: + * Indicates the API loading status. The following statuses are available: *