Guest User

Untitled

a guest
Dec 12th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. define [
  2. "app/models/app"
  3. "app/views/templates"
  4. ], (app, templates) ->
  5. SigninPage = FON.TemplateController.extend
  6.  
  7. initialize: ->
  8. @template = templates.login_template
  9.  
  10. # @bind "render", =>
  11. # alert("ha")
  12.  
  13.  
  14. app.router.route "/signin", "signin", (tab, test) ->
  15. # alert("!")
  16. app.page new SigninPage({})
  17.  
  18.  
  19. SigninPage
Add Comment
Please, Sign In to add comment