From a854f8f9eb6385990c1b9f256304536a09ac79c5 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 9 Oct 2010 17:58:29 -0400 Subject: [PATCH] Remove a bunch of console.log statements --- web_frontend/path_control.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/web_frontend/path_control.js b/web_frontend/path_control.js index 50f69f1..fec69d4 100644 --- a/web_frontend/path_control.js +++ b/web_frontend/path_control.js @@ -79,7 +79,6 @@ armadillo.PathControl.prototype.disposeInternal = function() { armadillo.PathControl.prototype.setPath = function(path) { this.path_ = app.stripLastPathComponent(path); this.name_ = path.substr(this.path_.length); - console.log(this.path_ + ' = ' + this.name_); }; /** @@ -164,7 +163,6 @@ armadillo.PathControl.prototype.decorateInternal = function(element) { */ armadillo.PathControl.prototype.enterDocument = function() { armadillo.PathControl.superClass_.enterDocument.call(this); - console.log('enter document ' + this.nameControl_.getElement()); this.nameControl_.getElement().focus(); }; @@ -229,7 +227,6 @@ armadillo.PathControl.prototype.fetchMenuContents_ = function(path, name, menu) * @param {Event} e */ armadillo.PathControl.prototype.componentChanged_ = function(e) { - console.log(e.target.getValue()); this.path_ = e.target.getValue(); this.removeChildren(true); this.decorateInternal(this.element_); @@ -241,7 +238,6 @@ armadillo.PathControl.prototype.componentChanged_ = function(e) { */ armadillo.PathControl.prototype.nameChanged_ = function(e) { // TODO: assert(this.editableLastComponent_) - console.log('new name = ' + e.target.value); this.name_ = e.target.value; e.stopPropagation(); return true; -- 2.22.5