Skip to content

Commit ae138ac

Browse files
committed
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.
1 parent c5712a2 commit ae138ac

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

test/data/testinit.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,12 @@ function url(value) {
151151
return iframe;
152152
}
153153
};
154-
}());
154+
}());
155+
156+
// Sandbox start for great justice
157+
(function() {
158+
var oldStart = window.start;
159+
window.start = function() {
160+
oldStart();
161+
};
162+
})();

0 commit comments

Comments
 (0)