Skip to content

Commit

Permalink
Merge pull request jquerytools#701 from alibby251/master
Browse files Browse the repository at this point in the history
Reverting change from append() to prepend().
  • Loading branch information
alibby251 committed Mar 15, 2012
2 parents 884082c + 5f0708e commit 7c6634b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toolbox/toolbox.history.js
Expand Up @@ -27,7 +27,7 @@
// create iframe that is constantly checked for hash changes // create iframe that is constantly checked for hash changes
if (!iframe) { if (!iframe) {
iframe = $("<iframe/>").attr("src", "javascript:false;").hide().get(0); iframe = $("<iframe/>").attr("src", "javascript:false;").hide().get(0);
$("body").prepend(iframe); $("body").append(iframe);


setInterval(function() { setInterval(function() {
var idoc = iframe.contentWindow.document, var idoc = iframe.contentWindow.document,
Expand Down

0 comments on commit 7c6634b

Please sign in to comment.