Skip to content

Commit

Permalink
Merge pull request #1 from olalacrelou/master
Browse files Browse the repository at this point in the history
removing 'http:' from url
  • Loading branch information
JohnnyTheTank authored Dec 20, 2016
2 parents b039144 + e1d0490 commit 073ad2c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/angular-footballdata-api-factory.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
@name: angular-footballdata-api-factory
@version: 0.2.0 (24-06-2016)
@version: 0.2.0 (19-12-2016)
@author: Jonathan Hornung
@url: https://github.com/JohnnyTheTank/angular-footballdata-api-factory#readme
@license: MIT
Expand Down Expand Up @@ -156,7 +156,7 @@ angular.module("jtt_footballdata", [])
}])
.service('footballdataSearchDataService', function () {
this.getApiBaseUrl = function () {
return 'http://api.football-data.org/v1/';
return '//api.football-data.org/v1/';
};

this.fillDataInObjectByList = function (_object, _params, _list) {
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-footballdata-api-factory.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/angular-footballdata-api-factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ angular.module("jtt_footballdata", [])
}])
.service('footballdataSearchDataService', function () {
this.getApiBaseUrl = function () {
return 'http://api.football-data.org/v1/';
return '//api.football-data.org/v1/';
};

this.fillDataInObjectByList = function (_object, _params, _list) {
Expand Down

0 comments on commit 073ad2c

Please sign in to comment.