Skip to content

Commit

Permalink
Merge pull request idris-lang#2514 from raichoo/master
Browse files Browse the repository at this point in the history
javascript: tweak event scheduling
  • Loading branch information
raichoo committed Aug 12, 2015
2 parents f05199f + 9b5a218 commit 650d3dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsrts/Runtime-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ var i$fromCharCode = function(chr) {
}

var i$RUN = function () {
for (var i = 0; i < 1000 && i$callstack.length; i++) {
for (var i = 0; i < 10000 && i$callstack.length; i++) {
var func = i$callstack.pop();
var args = i$callstack.pop();
func.apply(this,args);
Expand Down

0 comments on commit 650d3dd

Please sign in to comment.