Changes between Initial Version and Version 1 of Ticket #9949, comment 2
- Timestamp:
- Jan 20, 2013, 12:07:52 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9949, comment 2
initial v1 6 6 7 7 In 3.x we used this to make blur be forceBlur: 8 9 {{{ 8 10 CKEDITOR.focusManager.prototype['blur'] = CKEDITOR.focusManager.prototype['forceBlur']; 11 }}} 12 9 13 10 14 In 4.0.1 we're doing this to simulate that: 15 16 {{{ 11 17 CKEDITOR.focusManager.prototype.orig_blur = CKEDITOR.focusManager.prototype.blur; 12 18 CKEDITOR.focusManager.prototype.blur = function() { CKEDITOR.focusManager.prototype.orig_blur.call(this,true); }; 19 }}} 20