286fefc415da1c1f83f2984da80137ebaa55c75d
[profile/ivi/cowhide.git] / examples / calf / javascripts / app / views / artists.js
1 (function(app, Ember) {
2     'use strict';
3
4     var ArtistsView = app.Page.extend({
5         templateName: 'artists',
6         tagName: 'div',
7         classNames: ['library', 'scrollable'],
8
9         didInsertElement: function() {
10           this.$().ch_scrollable('enable');
11         }
12     });
13
14     app.ArtistsView = ArtistsView;
15 })(window.Calf, window.Ember);