Ember.js Is there a way to create a custom #ID .class name instead of default ember?
ember.js
Solution
No.
"ember-application" is hardcoded in Ember.EventDispatcher#setup, and "ember-view" is similarly a static string in the classNames property on Ember.View. Because 'classNames' is a concatenated property (which means subclasses combine their values, instead of replace them), you can add 'myapp-view' to the classNames array, but you can't remove (easily) values from super classes.
Problem
Is there a way to pass in a custom class or id namespace instead of the default ember? example: turn this ``` <body class="ember-application"> <div class="ember-view"></div> </body> ``` into: ``` <body class="myapp-application"> <div class="myapp-view"></div> </body> ```