Add Intel copyright header.
[profile/ivi/cowhide.git] / examples / hoofbeats / javascripts / app / views / allView.js
1 /* vi: set et sw=4 ts=4 si: */
2 /*
3  * Copyright (c) 2012, Intel Corporation.
4  *
5  * This program is licensed under the terms and conditions of the
6  * Apache License, version 2.0.  The full text of the Apache License is at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  */
10
11 (function(app, Ember) {
12     var AllView = Ember.View.extend({
13         templateName: 'all',
14         classNames: ['mediaItems ch-simple-scrollable'],
15
16         didInsertElement: function() {
17             this.$().ch_simple_scrollable('enable');
18         }
19     });
20
21     app.AllView = AllView;
22 })(window.Hoofbeats, window.Ember);