coffeenode-zxcvbn
Version:
realistic password strength estimation
24 lines (19 loc) • 591 B
JavaScript
// Generated by CoffeeScript 1.6.3
(function() {
var ZXCVBN_SRC, async_load;
ZXCVBN_SRC = 'http://dl.dropbox.com/u/209/zxcvbn/zxcvbn.js';
async_load = function() {
var first, s;
s = document.createElement('script');
s.src = ZXCVBN_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);