Ticket #2882: 2882_2.patch
File 2882_2.patch, 3.6 KB (added by , 14 years ago) |
---|
-
_source/core/config.js
151 151 * config.plugins = 'basicstyles,button,htmldataprocessor,toolbar,wysiwygarea'; 152 152 */ 153 153 154 plugins : 'basicstyles,blockquote,button,clipboard,colorbutton,contextmenu,elementspath,enterkey,entities,find,flash,font,format,forms,horizontalrule,htmldataprocessor,image,indent,justify,keystrokes,link,list,newpage,pagebreak,pastefromword,pastetext,preview,print,removeformat,s miley,showblocks,sourcearea,stylescombo,table,specialchar,tab,templates,toolbar,undo,wysiwygarea,wsc',154 plugins : 'basicstyles,blockquote,button,clipboard,colorbutton,contextmenu,elementspath,enterkey,entities,find,flash,font,format,forms,horizontalrule,htmldataprocessor,image,indent,justify,keystrokes,link,list,newpage,pagebreak,pastefromword,pastetext,preview,print,removeformat,save,smiley,showblocks,sourcearea,stylescombo,table,specialchar,tab,templates,toolbar,undo,wysiwygarea,wsc', 155 155 156 156 /** 157 157 * The theme to be used to build the UI. -
_source/core/editor.js
249 249 editor.updateElement(); 250 250 }); 251 251 252 // If we have a submit function, override it also, because it doesn't fire the "submit" event. 253 if ( form.submit && form.submit.call ) 252 // Setup the submit function because it doesn't fire the 253 // "submit" event. 254 if ( !form.$.submit.nodeName ) 254 255 { 255 CKEDITOR.tools.override( form.submit, function( originalSubmit )256 form.$.submit = CKEDITOR.tools.override( form.$.submit, function( originalSubmit ) 256 257 { 257 258 return function() 258 259 { 259 260 editor.updateElement(); 260 originalSubmit.apply( this, arguments ); 261 262 // For IE, the DOM submit function is not a 263 // function, so we need thid check. 264 if ( originalSubmit.apply ) 265 originalSubmit.apply( this, arguments ); 266 else 267 originalSubmit(); 261 268 }; 262 269 }); 263 270 } -
_source/lang/en.js
30 30 // Toolbar buttons without dialogs. 31 31 source : 'Source', 32 32 newPage : 'New Page', 33 save : 'Save', 33 34 preview : 'Preview', 34 35 cut : 'Cut', 35 36 copy : 'Copy', -
_source/plugins/toolbar/plugin.js
225 225 */ 226 226 CKEDITOR.config.toolbar = 227 227 [ 228 ['Source','-',' NewPage','Preview','-','Templates'],228 ['Source','-','Save','NewPage','Preview','-','Templates'], 229 229 ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker'], 230 230 ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], 231 231 ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'], -
_source/skins/default/icons.css
279 279 { 280 280 background-position: 0 -160px; 281 281 } 282 283 .cke_skin_default a.cke_button_save .cke_icon 284 { 285 background-position: 0 -32px; 286 }