main
 1#// This is a manifest file that'll be compiled into application.js, which will include all the files
 2#// listed below.
 3#//
 4#// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
 5#// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
 6#//
 7#// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
 8#// compiled file.
 9#//
10#// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11#// about supported directives.
12#//
13#= require jquery
14#= require jquery_ujs
15#= require bootstrap
16#= require handlebars
17#= require ember
18#= require ember-data
19#= require_self
20#= require urkel
21
22# for more details see: http://emberjs.com/guides/application/
23window.App = Ember.Application.create
24  LOG_TRANSITIONS: true
25  LOG_TRANSITIONS_INTERNAL: true
26  LOG_VIEW_LOOKUPS: true
27  rootElement: '#ember-app'
28
29Ember.Route.reopen
30  activate: ->
31    @_super()
32    document.title = @routeName
33
34#= require_tree .