11 lines
247 B
Plaintext
11 lines
247 B
Plaintext
|
class window.AppView extends Backbone.View
|
||
|
el: '#application'
|
||
|
template: JST['application/app_view']
|
||
|
initialize: ->
|
||
|
controller = new Controller({app: this})
|
||
|
Backbone.history.start()
|
||
|
render: =>
|
||
|
$(@el).html(@template())
|
||
|
this
|
||
|
|