fixed typo

This commit is contained in:
Danny Yoo 2011-09-06 18:20:53 -04:00
parent 4719c5d33d
commit c67ba730ff

View File

@ -332,7 +332,6 @@
that.cursor.node[0].id), that.cursor.node[0].id),
worldF); worldF);
var newHandlers = eventHandlers.concat([handler]); var newHandlers = eventHandlers.concat([handler]);
console.log('adding handler', handler);
return newHandlers; return newHandlers;
}, },
function(view) { function(view) {
@ -425,7 +424,7 @@
}; };
MockView.prototype.id = function() { MockView.prototype.id = function() {
return this.cursor.node.id; return this.cursor.node[0].id;
}; };
@ -1041,8 +1040,7 @@
function() { function() {
dispatchEventsInQueue( dispatchEventsInQueue(
function() { function() {
refreshView(function() {}, refreshView(function() {}, onMessyRestart);
onMessyRestart);
}, },
onMessyRestart); onMessyRestart);
}, },