mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
18 lines
473 B
JavaScript
18 lines
473 B
JavaScript
|
(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);
|