- Timestamp:
- 03/25/08 23:07:00 (8 months ago)
- Files:
-
- branches/vox-41/common/Editor/Iframe.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/vox-41/common/Editor/Iframe.js
r199 r262 38 38 // clear out the document completely 39 39 this.document.body.innerHTML = " "; 40 41 this.isWebKit = navigator.userAgent.toLowerCase().match(/webkit/); 40 42 }, 41 43 … … 156 158 */ 157 159 eventKeyUp: function( event ) { 160 /* safari always makes this event. ignore for language input method */ 161 if ( this.isWebKit ) { 162 return false; 163 } 158 164 this.monitorSelection( event ); 159 165 },
