fix handling of clicks on .mini-follower-link

This commit is contained in:
Simon Grim 2016-03-24 00:20:27 +05:00
parent 054348756d
commit 1f686b36cb

View File

@ -472,7 +472,7 @@ function whoFollows(username) {
function fillWhoFollows(list, item, offset, size) {
for (var i = offset; i < offset + size; i++) {
var follower_link = $('<a class="mini-follower-link"></a>')
.on('click', handleClickOpenProfileModal);
.on('click mouseup', handleClickOpenProfileModal);
// link follower to profile page
follower_link.attr("data-screen-name", list[i]);