Skip to content

Commit 14dd74a

Browse files
author
Dayana
committed
fix json path
1 parent 8d7e1ee commit 14dd74a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

www/js/services.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ angular.module('jsconfuy.services', [])
55
this.get = function() {
66
var dfd = $q.defer();
77

8-
$http.get('https://jsconfuy2015.herokuapp.com/speakers.json')
8+
$http.get('speakers.json')
99
.success(function(data) {
1010
dfd.resolve(data);
1111
})
@@ -22,7 +22,7 @@ angular.module('jsconfuy.services', [])
2222
this.get = function() {
2323
var dfd = $q.defer();
2424

25-
$http.get('https://jsconfuy2015.herokuapp.com/agenda.json')
25+
$http.get('agenda.json')
2626
.success(function(data) {
2727

2828
var day1 = _.filter(data, function(event){ return event.date =="day1" }),
@@ -43,7 +43,7 @@ angular.module('jsconfuy.services', [])
4343
this.getEvent = function(eventId){
4444
var dfd = $q.defer();
4545

46-
$http.get('https://jsconfuy2015.herokuapp.com/agenda.json')
46+
$http.get('agenda.json')
4747
.success(function(data) {
4848
var event = _.find(data, {id: eventId});
4949
dfd.resolve(event);

0 commit comments

Comments
 (0)