File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ angular.module('jsconfuy.services', [])
5
5
this . get = function ( ) {
6
6
var dfd = $q . defer ( ) ;
7
7
8
- $http . get ( 'https://jsconfuy2015.herokuapp.com/ speakers.json' )
8
+ $http . get ( 'speakers.json' )
9
9
. success ( function ( data ) {
10
10
dfd . resolve ( data ) ;
11
11
} )
@@ -22,7 +22,7 @@ angular.module('jsconfuy.services', [])
22
22
this . get = function ( ) {
23
23
var dfd = $q . defer ( ) ;
24
24
25
- $http . get ( 'https://jsconfuy2015.herokuapp.com/ agenda.json' )
25
+ $http . get ( 'agenda.json' )
26
26
. success ( function ( data ) {
27
27
28
28
var day1 = _ . filter ( data , function ( event ) { return event . date == "day1" } ) ,
@@ -43,7 +43,7 @@ angular.module('jsconfuy.services', [])
43
43
this . getEvent = function ( eventId ) {
44
44
var dfd = $q . defer ( ) ;
45
45
46
- $http . get ( 'https://jsconfuy2015.herokuapp.com/ agenda.json' )
46
+ $http . get ( 'agenda.json' )
47
47
. success ( function ( data ) {
48
48
var event = _ . find ( data , { id : eventId } ) ;
49
49
dfd . resolve ( event ) ;
You can’t perform that action at this time.
0 commit comments