I have read this SO post on how to add tags with a class to a view i.e. ::
App.ApplicationView = Ember.View.extend
name: 'Home',
layoutName: 'layouts/application',
templateName: 'views/home'
tagName: 'div'
elementId: 'home'
However, is there a way to adjust the application setup i.e. ::
window.App = Ember.Application.create
Store: DS.Store.extend
revision: 10,
adapter: DS.fixtureAdapter
To configure a "class" or "id" attached to the body tag?
Current Ember Setup:
DEBUG: -------------------------------
DEBUG: Ember : 1.5.1 ember.js?body=1:3522
DEBUG: Handlebars : 1.3.0 ember.js?body=1:3522
DEBUG: jQuery : 2.1.1 ember.js?body=1:3522
DEBUG: -------------------------------
Current source view:
<body class="ember-application" data-ember-extension="1">
<div id="home" class="ember-view">
<h1>Ember Layout</h1>
<h1>Home View</h1>
</div>
</body>
I will note I am using emblemjs for my handlebars templates and the body is setup in the application layout.