Changeset 4585
- Timestamp:
- 12/03/09 17:10:12 (3 years ago)
- Location:
- CKEditor/branches/versions/3.1.x
- Files:
-
- 3 edited
-
CHANGES.html (modified) (2 diffs)
-
_source/core/config.js (modified) (1 diff)
-
_source/core/editor.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/branches/versions/3.1.x/CHANGES.html
r4583 r4585 34 34 <h1> 35 35 CKEditor Changelog 36 </h1> 36 </h1>l45 37 37 38 <h3> 38 39 CKEditor 3.1 (SVN)</h3> … … 44 45 <li><a href="http://dev.fckeditor.net/ticket/2885">#2885</a> : Added 'div' dialog and corresponding context menu options.</li> 45 46 <li><a href="http://dev.fckeditor.net/ticket/4341">#4341</a> : Added the 'showborder' plugin.</li> 47 <li><a href="http://dev.fckeditor.net/ticket/4549">#4549</a> : Make the anti-cache query string configurable.</li> 46 48 </ul> 47 49 <p> -
CKEditor/branches/versions/3.1.x/_source/core/config.js
r4580 r4585 41 41 * CKEDITOR.replace( 'myfiled', { customConfig : '' } ); 42 42 */ 43 customConfig : CKEDITOR.getUrl( 'config.js' ),43 customConfig : 'config.js', 44 44 45 45 /** -
CKEditor/branches/versions/3.1.x/_source/core/editor.js
r4480 r4585 28 28 var loadConfig = function( editor ) 29 29 { 30 var customConfig = editor.config.customConfig;30 var customConfig = CKEDITOR.getUrl( editor.config.customConfig ); 31 31 32 32 // Check if there is a custom config to load. … … 45 45 // If there is no other customConfig in the chain, fire the 46 46 // "configLoaded" event. 47 if ( editor.config.customConfig== customConfig || !loadConfig( editor ) )47 if ( CKEDITOR.getUrl( editor.config.customConfig ) == customConfig || !loadConfig( editor ) ) 48 48 editor.fireOnce( 'customConfigLoaded' ); 49 49 }
Note: See TracChangeset
for help on using the changeset viewer.
