The spoon project create creates an empty ApplicationView.
We could instead override the render function with:
/**
* {@inheritDoc}
*/
render: function () {
this.$super();
// Add class names to the browser for easier styling for certain browsers
$(document.body).addClass(Browser.getName());
// Add also classes for the rendering engine (webkit, presto, trident, etc)
return this;
}
The spoon project create creates an empty ApplicationView. We could instead override the render function with:
This would be great to offer by default.