Last active
January 28, 2016 12:29
-
-
Save adriaandotcom/d9ccb2ca4ad16add3e0c to your computer and use it in GitHub Desktop.
Ember: Set class on root div element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
// This is arrow function in > ES6 | |
addClass: () => { | |
// Run next, otherwise the DOM is not ready | |
Ember.run.next(this, function() { | |
// Do it with plain JS for > IE10 | |
document.querySelector('body > .ember-view').classList.add('vanilla-class') | |
// Or do it with jQuery | |
Ember.$('body > .ember-view').addClass('jquery-class') | |
}) | |
}.on('init') | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.5.0", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "release", | |
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.2.0/ember-data.js", | |
"ember-template-compiler": "release" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment