Changeset 4352
- Timestamp:
- 10/12/09 18:21:44 (4 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 4 edited
-
CHANGES.html (modified) (1 diff)
-
_source/core/dom/event.js (modified) (1 diff)
-
_source/plugins/dialog/plugin.js (modified) (1 diff)
-
_source/plugins/sourcearea/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r4350 r4352 79 79 <li><a href="http://dev.fckeditor.net/ticket/4351">#4351</a> : Dash and dot could appear in attribute names.</li> 80 80 <li><a href="http://dev.fckeditor.net/ticket/4355">#4355</a> : 'maximize' and 'showblock' commands shouldn't take editor focus.</li> 81 <li><a href="http://dev.fckeditor.net/ticket/4504">#4504</a> : Fixed 'Enter'/'Esc' key is not working on dialog button.</li> 81 82 </ul> 82 83 <h3> -
CKEditor/trunk/_source/core/dom/event.js
r2948 r4352 88 88 89 89 if ( stopPropagation ) 90 { 91 if ( $.stopPropagation ) 92 $.stopPropagation(); 93 else 94 $.cancelBubble = true; 95 } 90 this.stopPropagation(); 96 91 }, 92 93 stopPropagation : function() 94 { 95 var $ = this.$; 96 if ( $.stopPropagation ) 97 $.stopPropagation(); 98 else 99 $.cancelBubble = true; 100 }, 101 97 102 /** 98 103 * Returns the DOM node where the event was targeted to. -
CKEditor/trunk/_source/plugins/dialog/plugin.js
r4184 r4352 1855 1855 { 1856 1856 if ( e.data.getKeystroke() in preventKeyBubblingKeys ) 1857 e.data. preventDefault( true);1857 e.data.stopPropagation(); 1858 1858 }; 1859 1859 -
CKEditor/trunk/_source/plugins/sourcearea/plugin.js
r4210 r4352 81 81 textarea.on( 'mousedown', function( evt ) 82 82 { 83 evt = evt.data.$; 84 if ( evt.stopPropagation ) 85 evt.stopPropagation(); 83 evt.data.stopPropagation(); 86 84 } ); 87 85 }
Note: See TracChangeset
for help on using the changeset viewer.
