Vulcan/client/views/posts/post_page.js
2014-07-05 11:24:28 +09:00

9 lines
357 B
JavaScript

Template[getTemplate('post_page')].rendered = function(){
if((scrollToCommentId=Session.get('scrollToCommentId')) && !this.rendered && $('#'+scrollToCommentId).exists()){
scrollPageTo('#'+scrollToCommentId);
Session.set('scrollToCommentId', null);
this.rendered=true;
}
if(this.data) // XXX
document.title = $(".post-title").text();
}