Change docs to load from HTTPS

This commit is contained in:
Joseph Schorr 2015-08-05 14:34:11 -04:00
parent e2a624fb90
commit e53c3e23be
2 changed files with 4 additions and 2 deletions

View file

@ -72,7 +72,7 @@ angular.module('quay').factory('DocumentationService', ['Config', '$timeout', fu
return;
}
$.ajax(Config.DOCUMENTATION_LOCATION + '/search.json')
$.ajax(Config.DOCUMENTATION_METADATA)
.done(function(r) {
documentationData = r;
callback(documentationData);