From 863ddfeafae7a08d044d39b205e3554c6e1d345a Mon Sep 17 00:00:00 2001 From: rolux Date: Mon, 3 Sep 2012 21:11:57 +0200 Subject: [PATCH] remove an onload dependency --- source/Ox/js/HTML.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox/js/HTML.js b/source/Ox/js/HTML.js index 81eeefb9..7da15250 100644 --- a/source/Ox/js/HTML.js +++ b/source/Ox/js/HTML.js @@ -64,7 +64,7 @@ }, salt = Ox.range(2).map(function(){ return Ox.range(16).map(function() { - return Ox.char(65 + Ox.random(26)); + return String.fromCharCode(65 + Ox.random(26)); }).join(''); });