/wp-includes/js/zxcvbn-async.js
https://bitbucket.org/skyarch-iijima/wordpress · JavaScript · 18 lines · 16 code · 1 blank · 1 comment · 3 complexity · 97a79e96a815b200139356055d752333 MD5 · raw file
- /* global _zxcvbnSettings */
- (function() {
- var async_load = function() {
- var first, s;
- s = document.createElement('script');
- s.src = _zxcvbnSettings.src;
- s.type = 'text/javascript';
- s.async = true;
- first = document.getElementsByTagName('script')[0];
- return first.parentNode.insertBefore(s, first);
- };
- if (window.attachEvent != null) {
- window.attachEvent('onload', async_load);
- } else {
- window.addEventListener('load', async_load, false);
- }
- }).call(this);