Vulcan/client/body.js
2013-01-13 09:13:25 +09:00

10 lines
No EOL
259 B
JavaScript

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