From ae138ac6d199163f48b31685d63d22832fc41ad2 Mon Sep 17 00:00:00 2001 From: jaubourg Date: Wed, 7 Mar 2012 18:23:46 +0100 Subject: Makes sure start is always called with default context and no arguments. Should stop FF from acting up. Hopefully, this ugly patch can be removed in the future. --- test/data/testinit.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/test/data/testinit.js b/test/data/testinit.js index 850e19c27..43244e7eb 100644 --- a/test/data/testinit.js +++ b/test/data/testinit.js @@ -151,4 +151,12 @@ function url(value) { return iframe; } }; -}()); \ No newline at end of file +}()); + +// Sandbox start for great justice +(function() { + var oldStart = window.start; + window.start = function() { + oldStart(); + }; +})(); \ No newline at end of file -- cgit v1.2.3