mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-08 06:55:46 +01:00
added relative_path to recent_replies and browsing users
This commit is contained in:
@@ -53,8 +53,8 @@ define(['composer'], function(composer) {
|
|||||||
li.setAttribute('data-pid', posts[i].pid);
|
li.setAttribute('data-pid', posts[i].pid);
|
||||||
|
|
||||||
|
|
||||||
li.innerHTML = '<a href="/user/' + posts[i].userslug + '"><img title="' + posts[i].username + '" style="width: 48px; height: 48px; /*temporary*/" class="img-rounded user-img" src="' + posts[i].picture + '" class="" /></a>' +
|
li.innerHTML = '<a href="' + RELATIVE_PATH + '/user/' + posts[i].userslug + '"><img title="' + posts[i].username + '" style="width: 48px; height: 48px; /*temporary*/" class="img-rounded user-img" src="' + posts[i].picture + '" class="" /></a>' +
|
||||||
'<a href="/topic/' + posts[i].topicSlug + '#' + posts[i].pid + '">' +
|
'<a href="' + RELATIVE_PATH + '/topic/' + posts[i].topicSlug + '#' + posts[i].pid + '">' +
|
||||||
'<strong><span>'+ posts[i].username + '</span></strong>' +
|
'<strong><span>'+ posts[i].username + '</span></strong>' +
|
||||||
'<p>' +
|
'<p>' +
|
||||||
posts[i].content +
|
posts[i].content +
|
||||||
|
|||||||
@@ -406,10 +406,10 @@ define(['composer'], function(composer) {
|
|||||||
var activeEl = $('.thread_active_users');
|
var activeEl = $('.thread_active_users');
|
||||||
|
|
||||||
function createUserIcon(uid, picture, userslug, username) {
|
function createUserIcon(uid, picture, userslug, username) {
|
||||||
if(!activeEl.find("[href='/user/"+ data.users[i].userslug + "']").length) {
|
if(!activeEl.find('[href="'+ RELATIVE_PATH +'/user/' + data.users[i].userslug + '"]').length) {
|
||||||
var userIcon = $('<img src="'+ picture +'"/>');
|
var userIcon = $('<img src="'+ picture +'"/>');
|
||||||
|
|
||||||
var userLink = $('<a href="/user/' + userslug + '"></a>').append(userIcon);
|
var userLink = $('<a href="' + RELATIVE_PATH + '/user/' + userslug + '"></a>').append(userIcon);
|
||||||
userLink.attr('data-uid', uid);
|
userLink.attr('data-uid', uid);
|
||||||
|
|
||||||
var div = $('<div class="inline-block"></div>');
|
var div = $('<div class="inline-block"></div>');
|
||||||
|
|||||||
Reference in New Issue
Block a user