router: add removeTarget

This commit is contained in:
Nils Schneider 2015-03-31 22:18:09 +02:00
parent 980187193f
commit 625e7ba880
2 changed files with 11 additions and 3 deletions

View file

@ -111,7 +111,15 @@ define(function () {
saveState() saveState()
} }
self.addTarget = function (d) { targets.push(d) } self.addTarget = function (d) {
targets.push(d)
}
self.removeTarget = function (d) {
targets = targets.filter( function (e) {
return d !== e
})
}
self.setData = function (data) { self.setData = function (data) {
objects.nodes = {} objects.nodes = {}