dd4784f3b1
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.
10 lines
247 B
JavaScript
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);
|