Vulcan/client/views/posts/post_page.js
2014-07-03 10:40:04 +09:00

9 lines
341 B
JavaScript

Template.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();
}