Changeset 1777
- Timestamp:
- 2008-03-22 18:53:37 (2 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 modified
-
editor/fckdialog.html (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/fckdialog.html
r1688 r1777 700 700 // All dialog windows, by default, will fire the "OnSelectionChange" 701 701 // event, no matter the Ok or Cancel button has been pressed. 702 FCK.Events.FireEvent( 'OnSelectionChange' ) ; 702 // It seems that OnSelectionChange may enter on a concurrency state 703 // on some situations (#1965), so we should put the event firing in 704 // the execution queue instead of executing it immediately. 705 setTimeout( function() 706 { 707 FCK.Events.FireEvent( 'OnSelectionChange' ) ; 708 }, 0 ) ; 703 709 } 704 710 -
FCKeditor/trunk/_whatsnew.html
r1776 r1777 118 118 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1948">#1948</a>] Some 119 119 CSS rules are reset to dialog elements to avoid conflict with the page CSS.</li> 120 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1965">#1965</a>] IE was 121 having problems with SpellerPages, causing some errors to be thrown when completing 122 the spell checking in some situations.</li> 120 123 </ul> 121 124 <h3>