BigW Consortium Gitlab

groups.js 242 Bytes
Newer Older
Fatih Acet committed
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);