Browse Source

Add gravatars back to history view

master
Chase Sterling 7 years ago
parent
commit
bc0876cf33
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      realms/templates/wiki/history.html

+ 5
- 1
realms/templates/wiki/history.html View File

@@ -58,7 +58,11 @@
ordering: false,
bFilter: false,
columns: [
{ "data": "author" },
{ "data": null,
"render": function(data) {
return '<img src="' + data.gravatar + '?s=20" class="avatar" /> ' + data.author
}
},
{ "data": "message" },
{ "data": "time",
"render": function (data) {


Loading…
Cancel
Save