From 311e24d6937662b6001634be3911783034b71d70 Mon Sep 17 00:00:00 2001
From: Amanda Ghassaei <amandaghassaei@gmail.com>
Date: Fri, 27 Mar 2015 04:13:45 -0400
Subject: [PATCH] removed logs

---
 js/fea/DmaBeam.js    | 1 -
 js/models/Lattice.js | 2 --
 2 files changed, 3 deletions(-)

diff --git a/js/fea/DmaBeam.js b/js/fea/DmaBeam.js
index a32fccdc..a94ba87b 100644
--- a/js/fea/DmaBeam.js
+++ b/js/fea/DmaBeam.js
@@ -44,7 +44,6 @@ DmaBeam.prototype.updateForScale = function(scale){//todo make this better
     var position = this.nodes[0].getPosition();
     position.add(this.nodes[1].getPosition());
     position.add(this.parentCell.getPosition());
-    console.log(this.nodes[1].getPosition());
     this.mesh.position.set(position.x, position.y, position.z);
     this.mesh.scale.set(scale, scale, scale);
 };
diff --git a/js/models/Lattice.js b/js/models/Lattice.js
index 952f179f..2aa77b3f 100644
--- a/js/models/Lattice.js
+++ b/js/models/Lattice.js
@@ -145,8 +145,6 @@ Lattice = Backbone.Model.extend({
         var scale = this._allAxesScales();
         var min = _.clone(this.get("cellsMin"));
         var max = _.clone(this.get("cellsMax"));
-        console.log(min);
-        console.log(max);
         _.each(_.keys(scale), function(key){
             min[key] *= scale[key];
             max[key] *= scale[key];
-- 
GitLab