From 7470c9bb52516d3e9df10fc53e7d31db014947a8 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Sat, 5 Nov 2011 17:37:56 +0000 Subject: [PATCH] fix initial definition of Ox --- source/Ox/js/Core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox/js/Core.js b/source/Ox/js/Core.js index f341afa1..6bfd9735 100644 --- a/source/Ox/js/Core.js +++ b/source/Ox/js/Core.js @@ -80,7 +80,7 @@ Ox The Ox object value <*> Any value @*/ -Ox = function(val) { +window.Ox = function(val) { return Ox.wrap(val); };