(hoofbeats) Adds initial Ember skeleton.
[profile/ivi/cowhide.git] / examples / hoofbeats / javascripts / app / views / artistsView.js
1 (function(app, Ember) {
2     'use strict';
3
4     var ArtistsView = Ember.View.extend({
5         templateName: 'artists',
6         tagName: 'ul',
7         classNames: ['artists']
8     });
9
10     app.ArtistsView = ArtistsView;
11 })(window.Hoofbeats, window.Ember);