Ticket #6416: 6416.patch
File 6416.patch, 927 bytes (added by , 10 years ago) |
---|
-
_source/plugins/sourcearea/plugin.js
72 72 win.on( 'resize', onResize ); 73 73 setTimeout( onResize, 0 ); 74 74 } 75 else 75 // By some yet unknown reason, we must stop the 76 // mousedown propagation for the textarea, 77 // otherwise it's not possible to place the caret 78 // inside of it (non IE or IE9). 79 if ( document.addEventListener ) 76 80 { 77 // By some yet unknown reason, we must stop the78 // mousedown propagation for the textarea,79 // otherwise it's not possible to place the caret80 // inside of it (non IE).81 81 textarea.on( 'mousedown', function( evt ) 82 82 { 83 83 evt.data.stopPropagation();