Vulcan/client/body.js

11 lines
293 B
JavaScript
Raw Normal View History

Template.body.created = function(){
Session.set('currentScroll', null);
}
Template.body.rendered = function(){
if(currentScroll=Session.get('currentScroll')){
console.log(currentScroll);
$('body').scrollTop(currentScroll);
Session.set('currentScroll', null);
}
}