grid: remove logging

This commit is contained in:
Kyle Kingsbury 2014-05-20 15:33:23 -07:00
parent 9b5b1a2f22
commit 00b3041d87

View file

@ -345,7 +345,6 @@
// Add an event.
Grid.prototype.add = function(e) {
console.log("Adding", e);
var newEvent = this.saveEvent(e);
var newMax = this.updateMax(e);
@ -395,16 +394,11 @@
// Accept an event.
Grid.prototype.update = function(e) {
console.log("Update", e);
if (e.state === "expired") {
this.remove(e);
} else {
this.add(e);
}
console.log("elCache", this.elCache);
console.log("events", this.events);
console.log("rows", this.rows);
console.log("cols", this.cols);
};
Grid.prototype.reflow = function() {