Summary
Userscripts.org community-based issue reporting. Members of the site vote and comment on potential issues of this script.
| Category | Votes | Comments | ||
|---|---|---|---|---|
| Broken | no votes | 2 comments | add comment | |
| Copy | no votes | 0 comments | add comment | |
| Harmful | no votes | 0 comments | add comment | |
| Spam | no votes | 0 comments | add comment | |
| Vague | no votes | 0 comments | add comment | |
Comments about if this script is broken
Hi, this script prevent from commenting for the new "timeline" on the right column.
Here is a the fix :
Replace
jQuery(".enter_submit").removeClass("enter_submit");
With
popupComments = jQuery(".uiContextualDialogContent .enter_submit");
jQuery(".enter_submit").not(popupComments).removeClass("enter_submit");
sometimes i need to refresh the page before the script takes effect.
perhaps adding the following will be beneficial.
// @include http://facebook.com/*
// @include http://*.facebook.com/*
// @include https://facebook.com/*
// @include https://*.facebook.com/*
thanks.