Update ace to 5b6e24dd0953e4728766bd8d6c807a48e9ec61cd

This commit is contained in:
Nathan Sobo
2012-01-31 19:23:42 -07:00
parent a72dc17b87
commit 0e677b6b82
205 changed files with 4986 additions and 2570 deletions

View File

@@ -37,6 +37,7 @@
* ***** END LICENSE BLOCK ***** */
define(function(require, exports, module) {
"use strict";
var event = require("./lib/event");
@@ -58,9 +59,11 @@ var RenderLoop = function(onRender, win) {
var _self = this;
event.nextTick(function() {
_self.pending = false;
var changes = _self.changes;
_self.changes = 0;
_self.onRender(changes);
var changes;
while (changes = _self.changes) {
_self.changes = 0;
_self.onRender(changes);
}
}, this.window);
}
};