From f6faa2e50205a11a63e33a4b95bdfc3a512ce3c2 Mon Sep 17 00:00:00 2001 From: Amanda Ghassaei <amandaghassaei@gmail.com> Date: Wed, 25 Feb 2015 12:13:09 -0500 Subject: [PATCH] trigger error --- js/models/Lattice.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/models/Lattice.js b/js/models/Lattice.js index b9948e23..05f4a9a6 100644 --- a/js/models/Lattice.js +++ b/js/models/Lattice.js @@ -375,7 +375,7 @@ Lattice = Backbone.Model.extend({ _initLatticeType: function(){ //bind events - this.set("columnSeparation", 0.0); + this.set("columnSeparation", 0.0, {silent:true}); this.listenTo(this, "change:columnSeparation", this._changeColSeparation); this.set("basePlane", new OctaBasePlane({scale:this.get("scale")})); @@ -452,7 +452,7 @@ Lattice = Backbone.Model.extend({ _initLatticeType: function(){ //bind events - this.set("columnSeparation", 0.0); + this.set("columnSeparation", 0.0, {silent:true}); this.listenTo(this, "change:columnSeparation", this._changeColSeparation); this.set("basePlane", new OctaBasePlane({scale:this.get("scale")})); -- GitLab