/* eslint-disable func-names, space-before-function-paren, vars-on-top, no-var, object-shorthand, comma-dangle, max-len */ (function() { // Add datepickers to all `js-access-expiration-date` elements. If those elements are // children of an element with the `clearable-input` class, and have a sibling // `js-clear-input` element, then show that element when there is a value in the // datepicker, and make clicking on that element clear the field. // gl.MemberExpirationDate = function(newSelector) { function toggleClearInput() { $(this).closest('.clearable-input').toggleClass('has-value', $(this).val() !== ''); } var selector = '.js-access-expiration-date'; if (typeof newSelector !== 'undefined' && newSelector !== '') { selector = newSelector; } var inputs = $(selector); inputs.datepicker({ dateFormat: 'yy-mm-dd', minDate: 1, onSelect: function () { $(this).trigger('change'); toggleClearInput.call(this); } }); inputs.next('.js-clear-input').on('click', function(event) { event.preventDefault(); var input = $(this).closest('.clearable-input').find(selector); input.datepicker('setDate', null) .trigger('change'); toggleClearInput.call(input); }); inputs.on('blur', toggleClearInput); inputs.each(toggleClearInput); }; }).call(this);