Skip to content

Commit 7c6634b

Browse files
committed
Merge pull request jquerytools#701 from alibby251/master
Reverting change from append() to prepend().
2 parents 884082c + 5f0708e commit 7c6634b

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").prepend(iframe);
30+
$("body").append(iframe);
3131

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

0 commit comments

Comments
 (0)