mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-27 23:24:26 +00:00
fix handling of clicks on .mini-follower-link
This commit is contained in:
parent
054348756d
commit
1f686b36cb
@ -472,7 +472,7 @@ function whoFollows(username) {
|
|||||||
function fillWhoFollows(list, item, offset, size) {
|
function fillWhoFollows(list, item, offset, size) {
|
||||||
for (var i = offset; i < offset + size; i++) {
|
for (var i = offset; i < offset + size; i++) {
|
||||||
var follower_link = $('<a class="mini-follower-link"></a>')
|
var follower_link = $('<a class="mini-follower-link"></a>')
|
||||||
.on('click', handleClickOpenProfileModal);
|
.on('click mouseup', handleClickOpenProfileModal);
|
||||||
|
|
||||||
// link follower to profile page
|
// link follower to profile page
|
||||||
follower_link.attr("data-screen-name", list[i]);
|
follower_link.attr("data-screen-name", list[i]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user