classNameBindingsArraypublic
 Defined in packages/ember-views/lib/mixins/class_names_support.js:41 
 A list of properties of the view to apply as class names. If the property is a string value, the value of that string will be applied as a class name. // Applies the 'high' class to the view element
Ember.View.extend({
  classNameBindings: ['priority'],
  priority: 'high'
});
 If the value of the property is a Boolean, the name of that property is added as a dasherized class name. // Applies th