mirror of
https://github.com/danbee/tube-status-server
synced 2025-03-04 08:39:12 +00:00
16 lines
348 B
JavaScript
16 lines
348 B
JavaScript
define(['jquerymobile',
|
|
'backbone',
|
|
'mustache',
|
|
'collections/lines',
|
|
'views/line_list'],
|
|
function(a, Backbone, Mustache, LinesCollection, LineList) {
|
|
return {
|
|
initialize: function() {
|
|
lines = new LinesCollection;
|
|
lineList = new LineList({ collection: lines });
|
|
|
|
lines.fetch();
|
|
}
|
|
};
|
|
});
|