Browse Source

Merge pull request #559 from brichbe/develop

No longer throw Error when MAX_REDRAWS count has been exceeded.
v3_develop
Alex 9 years ago
parent
commit
dfd9cf2a2b
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      lib/timeline/Core.js

+ 1
- 2
lib/timeline/Core.js View File

@ -614,8 +614,7 @@ Core.prototype.redraw = function() {
this.redraw();
}
else {
console.log('WARNING: infinite loop in redraw?')
throw new Error("bla")
console.log('WARNING: infinite loop in redraw?');
}
this.redrawCount = 0;
}

Loading…
Cancel
Save