mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
10 lines
No EOL
259 B
JavaScript
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);
|
|
}
|
|
} |