From 1f686b36cb159176d3dde12ff3f8c42bb9cce315 Mon Sep 17 00:00:00 2001 From: Simon Grim Date: Thu, 24 Mar 2016 00:20:27 +0500 Subject: [PATCH] fix handling of clicks on .mini-follower-link --- js/twister_following.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/twister_following.js b/js/twister_following.js index a743992..ea4aa53 100644 --- a/js/twister_following.js +++ b/js/twister_following.js @@ -472,7 +472,7 @@ function whoFollows(username) { function fillWhoFollows(list, item, offset, size) { for (var i = offset; i < offset + size; i++) { var follower_link = $('') - .on('click', handleClickOpenProfileModal); + .on('click mouseup', handleClickOpenProfileModal); // link follower to profile page follower_link.attr("data-screen-name", list[i]);