Changeset 4852
- Timestamp:
- 12/30/09 12:02:33 (3 years ago)
- Location:
- CKEditor/trunk/_source/plugins
- Files:
-
- 5 edited
-
clipboard/plugin.js (modified) (1 diff)
-
newpage/plugin.js (modified) (1 diff)
-
pastefromword/filter/default.js (modified) (1 diff)
-
table/dialogs/table.js (modified) (1 diff)
-
wsc/dialogs/wsc.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/clipboard/plugin.js
r4822 r4852 171 171 var pastebin = new CKEDITOR.dom.element( mode == 'text' ? 'textarea' : 'div', doc ); 172 172 pastebin.setAttribute( 'id', 'cke_pastebin' ); 173 // Safari requires a filler node inside the div to have the content pasted into it. (#4882) 173 // Safari requires a filler node inside the div to have the content pasted into it. (#4882) 174 174 CKEDITOR.env.webkit && pastebin.append( doc.createText( '\xa0' ) ); 175 175 doc.getBody().append( pastebin ); -
CKEditor/trunk/_source/plugins/newpage/plugin.js
r4837 r4852 30 30 command: command 31 31 } ); 32 32 33 33 }, 200 ); 34 34 } ); -
CKEditor/trunk/_source/plugins/pastefromword/filter/default.js
r4839 r4852 268 268 } )(), 269 269 270 // Providing a shorthand style then retrieve one or more style component values. 270 // Providing a shorthand style then retrieve one or more style component values. 271 271 getStyleComponents : ( function() 272 272 { -
CKEditor/trunk/_source/plugins/table/dialogs/table.js
r4786 r4852 200 200 if ( !this._.selectedElement ) 201 201 editor.insertElement( table ); 202 // Properly restore the selection inside table. (#4822) 202 // Properly restore the selection inside table. (#4822) 203 203 else 204 204 selection.selectBookmarks( bms ); -
CKEditor/trunk/_source/plugins/wsc/dialogs/wsc.js
r4783 r4852 82 82 83 83 LangComparer.setDefaulLangCode( editor.config.defaultLanguage ); 84 84 85 85 window.doSpell({ 86 86 ctrl : textareaId, 87 87 88 88 lang : editor.config.wsc_lang || LangComparer.getSPLangCode(editor.langCode ), 89 89 intLang: editor.config.wsc_uiLang || LangComparer.getSPLangCode(editor.langCode ), … … 113 113 customDictionaryName: editor.config.wsc_customDictionaryIds && editor.config.wsc_customDictionaryIds.split(","), 114 114 domainName: editor.config.wsc_domainName 115 115 116 116 }); 117 117
Note: See TracChangeset
for help on using the changeset viewer.
