take to topic after creation

This commit is contained in:
Baris Usakli
2013-08-19 14:43:37 -04:00
parent c05f56d28c
commit f939a632a6

View File

@@ -36,7 +36,6 @@
]);
function onNewTopic(data) {
var html = templates.prepare(templates['category'].blocks['topics']).parse({ topics: [data] }),
topic = document.createElement('div'),
container = document.getElementById('topics-container'),
@@ -61,6 +60,8 @@
container.insertBefore(topic, null);
$(topic).hide().fadeIn('slow');
}
ajaxify.go('topic/'+data.slug);
}
socket.on('event:new_topic', onNewTopic);