Vulcan/client/body.js
2013-01-16 07:25:39 +09:00

16 lines
No EOL
351 B
JavaScript

Template.body.helpers({
pageName : function(){
return Meteor.Router.page();
}
});
Template.body.created = function(){
Session.set('currentScroll', null);
}
Template.body.rendered = function(){
if(currentScroll=Session.get('currentScroll')){
$('body').scrollTop(currentScroll);
Session.set('currentScroll', null);
}
}