We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hey.... the animation won't change after the page is loaded, i currently have 2 pages i set the animation: A to B : growl B to A : fade
when i start to open the application from B to A the animation is fade when i start to open the application from A to B the animation is growl
i wonder why this is happening, it shouldn't be like that right? Thank You,
Code :
HomeTemplate.html
<template name="master_home"> <div class="bg"> {{#momentum plugin=data}} {{> yield }} {{/momentum}} </div> </template>
signup.html
<template name="signup" > ... </template>
home.html
<template name="home" > ... </template>
route:
Router.route('/',{ layoutTemplate:'master_home', data: function(){return {data:'left-to-right'}}, action: function(){ this.render('home'); } }); Router.route('/signup',{ layoutTemplate:'master_home', data: function(){return {data:'right-to-left'}}, action: function(){ this.render('signup'); } });
Thank You.
The text was updated successfully, but these errors were encountered:
Hi @Spycomb - you can't change the plugin reactively in this way right now. Probably it makes sense that you should be able to.
Sorry, something went wrong.
No branches or pull requests
hey....
the animation won't change after the page is loaded,
i currently have 2 pages
i set the animation:
A to B : growl
B to A : fade
when i start to open the application from B to A the animation is fade
when i start to open the application from A to B the animation is growl
i wonder why this is happening, it shouldn't be like that right?
Thank You,
Code :
HomeTemplate.html
signup.html
home.html
route:
Thank You.
The text was updated successfully, but these errors were encountered: