From 8e29795823d174e568a36e003c02d0b65a83a1d0 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Thu, 24 Jan 2013 11:16:07 +0000 Subject: [PATCH] Add test feed URL's. --- javascripts/collections/lines.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;