Make user profile picture a link on users table

This commit is contained in:
Jonathan Wong 2015-08-23 23:41:35 -07:00
parent ba5fd4b9d3
commit b685d17969

View file

@ -36,14 +36,15 @@ users_list_table_options = {
"data": "user_thumb", "data": "user_thumb",
"createdCell": function (td, cellData, rowData, row, col) { "createdCell": function (td, cellData, rowData, row, col) {
if (cellData === '') { if (cellData === '') {
$(td).html('<div class="users-poster-face" style="background-image: url(interfaces/default/images/gravatar-default-80x80.png);"></div>'); $(td).html('<a href="user?user_id=' + rowData['user_id'] + '"><div class="users-poster-face" style="background-image: url(interfaces/default/images/gravatar-default-80x80.png);"></div></a>');
} else { } else {
$(td).html('<div class="users-poster-face" style="background-image: url(' + cellData + ');"></div>'); $(td).html('<a href="user?user_id=' + rowData['user_id'] + '"><div class="users-poster-face" style="background-image: url(' + cellData + ');"></div></a>');
} }
}, },
"orderable": false, "orderable": false,
"searchable": false, "searchable": false,
"width": "5%", "width": "5%",
"className": "users-thumbs"
}, },
{ {
"targets": [2], "targets": [2],