Skip to content

Commit

Permalink
Makes sure start is always called with default context and no argumen…
Browse files Browse the repository at this point in the history
…ts. Should stop FF from acting up. Hopefully, this ugly patch can be removed in the future.
  • Loading branch information
jaubourg committed Mar 7, 2012
1 parent c5712a2 commit ae138ac
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/data/testinit.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,12 @@ function url(value) {
return iframe;
}
};
}());
}());

// Sandbox start for great justice
(function() {
var oldStart = window.start;
window.start = function() {
oldStart();
};
})();

0 comments on commit ae138ac

Please sign in to comment.