remove an onload dependency

This commit is contained in:
rolux 2012-09-03 21:11:57 +02:00
parent f4cdfb3349
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('');
}); });