Changeset 5669
- Timestamp:
- 07/09/10 09:52:23 (3 years ago)
- Location:
- CKEditor/branches/versions/3.4.x
- Files:
-
- 3 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/dialog/plugin.js (modified) (1 diff)
-
_source/plugins/div/dialogs/div.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/branches/versions/3.4.x/CHANGES.html
r5658 r5669 42 42 <li><a href="http://dev.fckeditor.net/ticket/5628">#5628</a> : Port 'DragResizeTable' plugin from FCKEditor 2.x.</li> 43 43 <li><a href="http://dev.fckeditor.net/ticket/979">#979</a> : New configuration 'enableTabKeyTools' to allow using 'Tab' key to navigate through table cells.</li> 44 </ul> 45 <p> 46 Fixed issues:</p> 47 <ul> 48 <li><a href="http://dev.fckeditor.net/ticket/5415">#5415</a> : Undo not working when we change the Table Properties for the table on a saved page.</li> 44 49 </ul> 45 50 <h3> -
CKEditor/branches/versions/3.4.x/_source/plugins/dialog/plugin.js
r5534 r5669 169 169 this.on( 'ok', function( evt ) 170 170 { 171 // Dialog confirm might probably introduce content changes (#5415). 172 editor.fire( 'saveSnapshot' ); 173 setTimeout( function () { editor.fire( 'saveSnapshot' ); }, 0 ); 171 174 if ( definition.onOk.call( this, evt ) === false ) 172 175 evt.data.hide = false; -
CKEditor/branches/versions/3.4.x/_source/plugins/div/dialogs/div.js
r5656 r5669 485 485 onOk : function() 486 486 { 487 editor.fire( 'saveSnapshot' );488 487 if ( command == 'editdiv' ) 489 488 containers = [ this._element ]; … … 500 499 !containers[ i ].getAttribute( 'style' ) && containers[ i ].removeAttribute( 'style' ); 501 500 } 502 editor.fire( 'saveSnapshot' );503 501 504 502 this.hide();
Note: See TracChangeset
for help on using the changeset viewer.
