diff --git a/public/src/forum/category.js b/public/src/forum/category.js index 4c94174488..b7afc05933 100644 --- a/public/src/forum/category.js +++ b/public/src/forum/category.js @@ -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);