1
0
Fork 0
forked from 0x2620/oxjs

remove an onload dependency

This commit is contained in:
rolux 2012-09-03 21:11:57 +02:00
commit 863ddfeafa

View file

@ -64,7 +64,7 @@
}, },
salt = Ox.range(2).map(function(){ salt = Ox.range(2).map(function(){
return Ox.range(16).map(function() { return Ox.range(16).map(function() {
return Ox.char(65 + Ox.random(26)); return String.fromCharCode(65 + Ox.random(26));
}).join(''); }).join('');
}); });