mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/tags/1.5-rc-1@5137 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
49 lines
No EOL
1.2 KiB
JavaScript
49 lines
No EOL
1.2 KiB
JavaScript
jQuery(document).ready( function() {
|
|
jQuery(".widget div#groups-list-options a").live('click',
|
|
function() {
|
|
var link = this;
|
|
jQuery(link).addClass('loading');
|
|
|
|
jQuery(".widget div#groups-list-options a").removeClass("selected");
|
|
jQuery(this).addClass('selected');
|
|
|
|
jQuery.post( ajaxurl, {
|
|
action: 'widget_groups_list',
|
|
'cookie': encodeURIComponent(document.cookie),
|
|
'_wpnonce': jQuery("input#_wpnonce-groups").val(),
|
|
'max_groups': jQuery("input#groups_widget_max").val(),
|
|
'filter': jQuery(this).attr('id')
|
|
},
|
|
function(response)
|
|
{
|
|
jQuery(link).removeClass('loading');
|
|
groups_wiget_response(response);
|
|
});
|
|
|
|
return false;
|
|
}
|
|
);
|
|
});
|
|
|
|
function groups_wiget_response(response) {
|
|
response = response.substr(0, response.length-1);
|
|
response = response.split('[[SPLIT]]');
|
|
|
|
if ( response[0] != "-1" ) {
|
|
jQuery(".widget ul#groups-list").fadeOut(200,
|
|
function() {
|
|
jQuery(".widget ul#groups-list").html(response[1]);
|
|
jQuery(".widget ul#groups-list").fadeIn(200);
|
|
}
|
|
);
|
|
|
|
} else {
|
|
jQuery(".widget ul#groups-list").fadeOut(200,
|
|
function() {
|
|
var message = '<p>' + response[1] + '</p>';
|
|
jQuery(".widget ul#groups-list").html(message);
|
|
jQuery(".widget ul#groups-list").fadeIn(200);
|
|
}
|
|
);
|
|
}
|
|
} |