2013-01-11 23:49:59 +00:00
|
|
|
/*
|
|
|
|
* @file
|
|
|
|
* The javascript returned when destroy is called in the topic controller
|
|
|
|
* This happens when a DELETE is sent to /topics/:id
|
|
|
|
*/
|
|
|
|
|
2013-01-05 02:39:16 +00:00
|
|
|
if (Mconsole != null) {
|
|
|
|
var node = Mconsole.graph.getNode(<%= @topic.id %>);
|
|
|
|
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(<%= @topic.id %>);
|
|
|
|
Mconsole.labels.disposeLabel(<%= @topic.id %>);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('#<%= dom_id(@topic) %>').fadeOut('slow');
|
2013-01-11 23:49:59 +00:00
|
|
|
}
|