2013-01-11 23:49:59 +00:00
|
|
|
/*
|
|
|
|
* @file
|
|
|
|
* This code removes a mapping from a topic on to a map, which removes the
|
|
|
|
* topic from that map.
|
|
|
|
* TODO: is this code still used?
|
|
|
|
* TODO: What URL accesses this code?
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-01-05 02:39:16 +00:00
|
|
|
if (Mconsole != null) {
|
|
|
|
var node = Mconsole.graph.getNode(<%= @mapping.topic_id %>);
|
2013-01-25 05:47:32 +00:00
|
|
|
if (node.id == Mconsole.root) {
|
|
|
|
Mconsole.graph.eachNode(function (n) {
|
|
|
|
if (n.id != node.id) Mconsole.root = n.id;
|
|
|
|
});
|
|
|
|
}
|
2013-01-05 02:39:16 +00:00
|
|
|
node.setData('alpha', 0, 'end');
|
|
|
|
node.eachAdjacency(function(adj) {
|
|
|
|
adj.setData('alpha', 0, 'end');
|
|
|
|
});
|
|
|
|
Mconsole.fx.animate({
|
|
|
|
modes: ['node-property:alpha',
|
|
|
|
'edge-property:alpha'],
|
|
|
|
duration: 1000
|
|
|
|
});
|
|
|
|
Mconsole.graph.removeNode(<%= @mapping.topic_id %>);
|
2013-01-11 23:49:59 +00:00
|
|
|
}
|