Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <button {{action "close"}}>
  2. {{#link-to 'register'}}Registreer{{/link-to}}
  3. </button>
  4.  
  5. // template.hbs
  6.  
  7. <button {{action "link" "register"}}>Registreer</button>
  8.  
  9. ...
  10.  
  11. // template-controller.js
  12. actions: {
  13. link: function(routeName) {
  14. this.transitionToRoute(routeName);
  15. this.close()
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement