Skip to content

Commit

Permalink
added ssl support
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyTheTank committed Mar 21, 2016
1 parent 3f48acc commit 0f72b82
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-flickr-api-factory",
"description": "angularjs factory for flickr json rest api requests",
"version": "0.5.0",
"version": "0.5.1",
"main": "dist/angular-flickr-api-factory.js",
"authors": [
"Jonathan Hornung"
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-flickr-api-factory.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
@name: angular-flickr-api-factory
@version: 0.5.0 (23-02-2016)
@version: 0.5.1 (21-03-2016)
@author: Jonathan Hornung
@url: https://github.com/JohnnyTheTank/angular-flickr-api-factory#readme
@license: MIT
Expand Down Expand Up @@ -49,7 +49,7 @@ angular.module("jtt_flickr", [])
}])
.service('flickrSearchDataService', function () {
this.getApiBaseUrl = function (_params) {
return "http://api.flickr.com/services/feeds/photos_public.gne";
return "https://api.flickr.com/services/feeds/photos_public.gne";
};

this.fillDataInObjectByList = function (_object, _params, _list) {
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-flickr-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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-flickr-api-factory",
"version": "0.5.0",
"version": "0.5.1",
"description": "angularjs factory for flickr json rest api requests",
"main": "dist/angular-flickr-api-factory.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/angular-flickr-api-factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ angular.module("jtt_flickr", [])
}])
.service('flickrSearchDataService', function () {
this.getApiBaseUrl = function (_params) {
return "http://api.flickr.com/services/feeds/photos_public.gne";
return "https://api.flickr.com/services/feeds/photos_public.gne";
};

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

0 comments on commit 0f72b82

Please sign in to comment.