gitlab-org--gitlab-foss/app/assets/javascripts/project_members.js
Sean McGivern dd4784f3b1 Add MemberExpirationDate JS helper
This helper adds a datepicker to all `js-access-expiration-date`
elements. If that element is a child of a `clearable-input` element and
has a sibling `js-clear-input` element, then it will show a working
clear button to the right of the input field.
2016-08-18 14:14:22 +01:00

10 lines
247 B
JavaScript

(function() {
this.ProjectMembers = (function() {
function ProjectMembers() {
$('li.project_member').bind('ajax:success', function() {
return $(this).fadeOut();
});
}
return ProjectMembers;
})();
}).call(this);