Changeset 7455
- Timestamp:
- 04/06/12 10:00:02 (15 months ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/undo/plugin.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r7453 r7455 100 100 <li><a href="http://dev.ckeditor.com/ticket/8528">#8528</a> : Redundant <code>imagePreviewBoxId</code> in the Image Properties dialog window is now removed.</li> 101 101 <li><a href="http://dev.ckeditor.com/ticket/8864">#8864</a> : [IE]Fix ARIA presentation of toolbar rich combo in JAWS.</li> 102 <li><a href="http://dev.ckeditor.com/ticket/8459">#8459</a> : Fix wrong undo step on enter key.</li> 102 103 <li>Updated the following language files as submitted to the <a href="https://www.transifex.net/projects/p/ckeditor/">CKEditor UI Translation Center</a>: Arabic, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, Esperanto, Estonian, Faroese, French, German, Greek, Gujarati, Hindi, Italian, Macedonian, Norwegian (Bokmål and Nynorsk), Polish, Portuguese, Turkish, Uighur, Ukrainian, Vietnamese, Welsh.</li> 103 104 </ul> -
CKEditor/trunk/_source/plugins/undo/plugin.js
r7414 r7455 261 261 if ( startedTyping || modifierSnapshot ) 262 262 { 263 var beforeTypeImage = new Image( this.editor ); 263 var beforeTypeImage = new Image( this.editor ), 264 beforeTypeCount = this.snapshots.length; 264 265 265 266 // Use setTimeout, so we give the necessary time to the … … 273 274 currentSnapshot = currentSnapshot.replace( /\s+data-cke-expando=".*?"/g, '' ); 274 275 275 if ( beforeTypeImage.contents != currentSnapshot ) 276 // If changes have taken place, while not been captured yet (#8459), 277 // compensate the snapshot. 278 if ( beforeTypeImage.contents != currentSnapshot && 279 beforeTypeCount == this.snapshots.length ) 276 280 { 277 281 // It's safe to now indicate typing state.
Note: See TracChangeset
for help on using the changeset viewer.
