1
0
mirror of https://github.com/danbee/tube-status-server synced 2025-03-04 08:39:12 +00:00
tube-status-server/javascripts/collections/lines.js
2013-01-30 13:07:45 +00:00

17 lines
428 B
JavaScript

define(['backbone', 'models/line'], function(Backbone, Line) {
var LinesCollection = Backbone.Collection.extend({
// added callback=? to force jsonp
url: "http://tubefeed.herokuapp.com/now.json?callback=?",
urls: {
now: "http://tubefeed.herokuapp.com/now.json?callback=?",
weekend: "http://tubefeed.herokuapp.com/weekend.json?callback=?"
},
model: Line,
});
return LinesCollection;
});