blob: 4382dd6860f542d75fdb69d94adca8e82397ed04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(function() {
this.GroupMembers = (function() {
function GroupMembers() {
$('li.group_member').bind('ajax:success', function() {
return $(this).fadeOut();
});
}
return GroupMembers;
})();
}).call(this);
|