Add delays so firefox can catch up
This commit is contained in:
@ -61,7 +61,7 @@ window.common = (function(global) {
|
||||
.first()
|
||||
// the delay here is to give code within the iframe
|
||||
// control to run
|
||||
.delay(100);
|
||||
.delay(400);
|
||||
})
|
||||
.map(() => code);
|
||||
};
|
||||
|
@ -40,7 +40,8 @@ window.$(document).ready(function() {
|
||||
return Rx.Observable.throw(window.__err);
|
||||
}
|
||||
|
||||
return Rx.Observable.from(tests)
|
||||
return Rx.Observable.from(tests, null, null, Rx.Scheduler.default)
|
||||
.delay(100)
|
||||
.map(test => {
|
||||
const userTest = {};
|
||||
common.appendToOutputDisplay('');
|
||||
|
Reference in New Issue
Block a user