diff --git a/javascripts/collections/lines.js b/javascripts/collections/lines.js index 5a52c62..7c72378 100644 --- a/javascripts/collections/lines.js +++ b/javascripts/collections/lines.js @@ -9,14 +9,14 @@ define(['backbone', 'models/line'], function(Backbone, Line) { var LinesCollection = Backbone.Collection.extend({ // url: "http://api.tubeupdates.com/?method=get.status", urls: { - now: "/test-data/now.json", - tomorrow: "/test-data/tomorrow.json", - weekend: "/test-data/weekend.json" + now: "http://tubefeed.herokuapp.com/now.json", + tomorrow: "http://tubefeed.herokuapp.com/tomorrow.json", + weekend: "http://tubefeed.herokuapp.com/weekend.json" }, model: Line, - // sync: MySync, + sync: MySync, parse: function(data) { return data.response.lines;