From 5b6d353ed5d40a9a389b944a199840b30f2d1d5a Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 12 Jun 2013 10:46:25 -0400 Subject: [PATCH] added help module --- ChangeLog | 2 ++ json/modules.json | 1 + lib/client/view.js | 3 ++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 44c31fc2..35cde65a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -58,6 +58,8 @@ getJSONfromFileTable. * Added ability to put callback to view. +* Added help module. + 2012.04.22, v0.2.0 diff --git a/json/modules.json b/json/modules.json index 8ea623b7..a37640b7 100644 --- a/json/modules.json +++ b/json/modules.json @@ -2,6 +2,7 @@ "edit/_codemirror", "menu", "view", + "help", "terminal", { "name": "storage", "data": [{ diff --git a/lib/client/view.js b/lib/client/view.js index 92e36a38..0d35e08b 100644 --- a/lib/client/view.js +++ b/lib/client/view.js @@ -36,8 +36,9 @@ var CloudCmd, Util, DOM, CloudFunc, $; }; this.init = function(pCallBack){ + debugger; Util.loadOnLoad([ - pCallBack || Util.retExec(View.show, null), + pCallBack || View.show, load, DOM.jqueryLoad ]);