*/
$(function() {
- function ModPlus_setup(notice) {
- if ($(notice).find('.remote-profile-options').size()) {
- var $options = $(notice).find('.remote-profile-options');
- $options.prepend($())
- $(notice).find('.author').mouseenter(function(event) {
- $(notice).find('.remote-profile-options').fadeIn();
- });
- $(notice).mouseleave(function(event) {
- $(notice).find('.remote-profile-options').fadeOut();
- });
+ $('.notice .author').live('mouseenter', function(e) {
+ var notice = $(this).closest('.notice');
+ var popup = notice.find('.remote-profile-options');
+ if (popup.length) {
+ popup.fadeIn();
+ }
+ });
+ $('.notice').live('mouseleave', function(e) {
+ var notice = $(this);
+ var popup = notice.find('.remote-profile-options');
+ if (popup.length) {
+ popup.fadeOut();
}
- }
-
- $('.notice').each(function() {
- ModPlus_setup(this);
});
});