Ticket #8691: 8691.patch
File 8691.patch, 729 bytes (added by , 13 years ago) |
---|
-
_source/plugins/clipboard/plugin.js
240 240 && ( bogusSpan.is && bogusSpan.hasClass( 'Apple-style-span' ) ) ? 241 241 bogusSpan : pastebin ); 242 242 243 sel.selectBookmarks( bms ); 244 callback( pastebin[ 'get' + ( mode == 'text' ? 'Value' : 'Html' ) ]() ); 243 // Because of IE7, we need to delay the bookmarks selection. (#8691) 244 setTimeout( function() 245 { 246 sel.selectBookmarks( bms ); 247 callback( pastebin[ 'get' + ( mode == 'text' ? 'Value' : 'Html' ) ]() ); 248 }, 0 ); 245 249 }, 0 ); 246 250 } 247 251