Guest User

Untitled

a guest
Jan 23rd, 2018
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. GameRouter = new Backbone.Router.extend
  2. routes:
  3. "start": "start"
  4. "draw": "draw"
  5.  
  6. start: ->
  7. this.navigate('/draw')
  8. draw: ->
  9. $('#sketchpad .front > div').hide()
  10. $('#draw').show()
  11. $('#sketchpad').removeClass("flipped")
  12.  
  13. # Causes "Uncaught TypeError: Object [object Object] has no method 'apply'" (backbone.js:1103)
  14. window.game = new GameRouter
  15.  
  16. Backbone.history.start root: "/play"
Add Comment
Please, Sign In to add comment