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