mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-11 16:35:47 +01:00
take to topic after creation
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user