From 42e231f95cb45f60da2473434a9a548964cf4279 Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 22 Jun 2012 15:05:29 +0200 Subject: [PATCH] update tutorial (to reflect that the DOM is ready inside the Ox.load callback) --- readme/getting_started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme/getting_started.html b/readme/getting_started.html index 66e60b56..779919ce 100644 --- a/readme/getting_started.html +++ b/readme/getting_started.html @@ -6,7 +6,7 @@ <script type="text/javascript" src="OxJS/build/Ox.js"></script> <script> Ox.load(function() { - // Your code here. + // Document ready. Your code here. }); </script> </head>