(hoofbeats) Adds some vi modelines.
[profile/ivi/cowhide.git] / examples / hoofbeats / javascripts / app / store.js
1 /* vi: set et sw=4 ts=4 si: */
2 (function(app) {
3     'use strict';
4
5     var Store = function() {}
6
7     Store.prototype = {
8         getArtists: function() {
9             var artists = [];
10             return artists;
11         }
12     };
13
14     app.Store = new Store();
15 })(window.Hoofbeats);