repairing

This commit is contained in:
Danny Yoo 2011-09-06 18:14:22 -04:00
parent de1843bc78
commit 4719c5d33d

View File

@ -331,8 +331,8 @@
name, name,
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) {
@ -748,16 +748,6 @@
EventSource.prototype.onStop = function() { EventSource.prototype.onStop = function() {
}; };
// // The default behavior of pause is to cause the event source to stop.
// EventSource.prototype.onPause = function() {
// this.onStop();
// };
// // The default behavior of unpause is to start an event source up again.
// EventSource.prototype.onUnpause = function(fireEvent) {
// this.onStart(fireEvent);
// };