UNPKG

@hydrogen-design-system/core

Version:

The core files required universally by Hydrogren components.

13 lines (11 loc) 376 B
// Hydrogen / Core function h2CoreDocumentReady(callback){ if (document.readyState!='loading') callback(); else if (document.addEventListener) document.addEventListener('DOMContentLoaded', callback); else document.attachEvent('onreadystatechange', function(){ if (document.readyState=='complete') callback(); }); } export { h2CoreDocumentReady };