From cae79f4d19afd110815e045987ebb67e5af6244c Mon Sep 17 00:00:00 2001 From: David Brunnthaler Date: Wed, 3 May 2017 08:53:49 +0200 Subject: [PATCH] Bugfix: Internet Explorer selection expanded until the very end of the page --- js/highlight-and-share.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/highlight-and-share.js b/js/highlight-and-share.js index 24a7c7a..5a4052e 100755 --- a/js/highlight-and-share.js +++ b/js/highlight-and-share.js @@ -181,7 +181,7 @@ jQuery( document ).ready( function( $ ) { } ); //Add to document - $( 'body' ).append( wrapper_clone ); + setTimeout(function(){ $( 'body' ).append( wrapper_clone ); }, 100); }; if ( highlight_and_share.show_twitter == true || highlight_and_share.show_facebook == true || highlight_and_share.show_linkedin == true || highlight_and_share.show_pinterest == true || highlight_and_share.show_email == true) { has_load_html();