Skip to content

Commit be03c4d

Browse files
committed
Fix mixed content in search
1 parent 2214861 commit be03c4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/search.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var fnFormatSearchResult = function(value, data, currentValue) {
44
var listing = users[value]["name"] + " (" + users[value]["username"] + ")";
55

66
listing = listing.replace(new RegExp(pattern, 'gi'), '<strong>$1<\/strong>');
7-
return '<img src="http://www.gravatar.com/avatar/' + users[value]["email"] + '.jpg?s=25" /> ' + listing;
7+
return '<img src="https://www.gravatar.com/avatar/' + users[value]["email"] + '.jpg?s=25" /> ' + listing;
88
};
99

1010
$('input.search').autocomplete({

0 commit comments

Comments
 (0)