Commit 8d72e0b
Changed files (2)
app
assets
javascripts
views
layouts
app/assets/javascripts/application.js.coffee
@@ -25,6 +25,7 @@ window.App = Ember.Application.create
LOG_TRANSITIONS: true
LOG_TRANSITIONS_INTERNAL: true
LOG_VIEW_LOOKUPS: true
+ rootElement: '#ember-app'
Ember.Route.reopen
activate: ->
app/views/layouts/application.html.erb
@@ -15,5 +15,7 @@
</head>
<body>
<%= render partial: 'shared/menu' %>
+ <%= yield %>
+ <div id="ember-app"></div>
</body>
</html>