Sha256: e78785071dd290753817630e20d1144a354c56550baa84b64a5f2d5530c687a5
Contents?: true
Size: 368 Bytes
Versions: 55
Compression:
Stored size: 368 Bytes
Contents
mumuki.onInputsReady = (() => { // Declares a `document.ready` handler that will be // activated only when there is at least one element that match // the given selector function onInputsReady(inputsSelector, callback) { $(document).ready((event) => { if ($(inputsSelector).length === 0) return; callback(event); }); } return onInputsReady; })();
Version data entries
55 entries across 55 versions & 1 rubygems