Update Gravatar to use protocol relative URL

Stops warnings over SSL.
This commit is contained in:
Kolchy
2014-09-04 10:05:43 +10:00
parent 5ac4b2b305
commit 40fbcc5a99

View File

@@ -17,7 +17,7 @@ function avatarDirective() {
scope.$watch("hash", function (val) {
//set the gravatar url
scope.gravatar = "http://www.gravatar.com/avatar/" + val + "?s=40";
scope.gravatar = "//www.gravatar.com/avatar/" + val + "?s=40";
});
}