mardi 1 septembre 2015

How do I add classNames to the first element of the page without using a view?

I want to add a wrapper class to the first div element in my page. I used to do this with a view. So, it seems that Ember 2.0 won't support Views anymore. So how can I do that now?

view/application.js:

import Ember from 'ember';

export default Ember.View.extend({
    classNames: ['wrapper'],
});

Resulting in the following page:

<body class="ember-application">

<div id="ember573" class="ember-view wrapper">
    the rest of my page in this div
</div>

</body>

How is this done now that views are deprecated?




Aucun commentaire:

Enregistrer un commentaire