13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
(function() {
|
|
this.ProjectMembers = (function() {
|
|
function ProjectMembers() {
|
|
$('li.project_member').bind('ajax:success', function() {
|
|
return $(this).fadeOut();
|
|
});
|
|
}
|
|
|
|
return ProjectMembers;
|
|
|
|
})();
|
|
|
|
}).call(this);
|