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