Skip to content

Commit fbb01e9

Browse files
author
bradrobertson
committed
prepend iframe to body instead of append, apparently fixes issues/78
1 parent 70c2236 commit fbb01e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/toolbox/toolbox.history.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
// create iframe that is constantly checked for hash changes
2828
if (!iframe) {
2929
iframe = $("<iframe/>").attr("src", "javascript:false;").hide().get(0);
30-
$("body").append(iframe);
30+
$("body").prepend(iframe);
3131

3232
setInterval(function() {
3333
var idoc = iframe.contentWindow.document,

0 commit comments

Comments
 (0)