client/js/renderer/edge.js
changeset 433 e457ec945e50
parent 293 fba23fde14ba
child 434 0d5998b32a7c
equal deleted inserted replaced
432:24754fe4baaf 433:e457ec945e50
   221             }
   221             }
   222             this.all_buttons.forEach(function(b) {
   222             this.all_buttons.forEach(function(b) {
   223                 b.destroy();
   223                 b.destroy();
   224             });
   224             });
   225             var _this = this;
   225             var _this = this;
   226             this.bundle.edges = _(this.bundle.edges).reject(function(_edge) {
   226             this.bundle.edges = _.reject(this.bundle.edges, function(_edge) {
   227                 return _this === _edge;
   227                 return _this === _edge;
   228             });
   228             });
   229         }
   229         }
   230     });
   230     }).value();
       
   231 //    });
   231 
   232 
   232     return Edge;
   233     return Edge;
   233 
   234 
   234 });
   235 });