Open the /static/jscript/main.js file
Find:
$('*').unbind();
Replace with:
$('#main_core_body_holder *').unbind();
phpFox has fixed this. This fix only applies to version 3.4 and below.
$('*').unbind();
$('#main_core_body_holder *').unbind();
tselaty wrote:Sadly, this causes another problem where users are unable to interact with feed items as they're loaded in after the page load (eg: commenting).
This is because the loadInit function unbinds everything on the page, which is pretty silly.
/static/jscript/main.js
Replace the loadInit's:
$("*").unbind();
with
$("#main_core_body_holder *").unbind();
pcosmin wrote:can u please be more specific? which line ? i have searched for 30 min and i didn't find it