Remove a bunch of console.log statements
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 9 Oct 2010 21:58:29 +0000 (17:58 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 9 Oct 2010 21:58:29 +0000 (17:58 -0400)
web_frontend/path_control.js

index 50f69f15e8ac3bd1939c3f6b9b6ba75e8e40ead3..fec69d40e5f1eb92e7fa21902fc136593190d49f 100644 (file)
@@ -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;