diff --git a/ChangeLog b/ChangeLog index 065af45e..e7b324c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -82,7 +82,7 @@ getJSONfromFileTable. * feature(console) jquery-terminal -> jq-console -* fix(console) remove outline on focus +* fix(help) remove pre 2012.04.22, v0.2.0 diff --git a/lib/client/help.js b/lib/client/help.js index c0de9822..ae35146b 100644 --- a/lib/client/help.js +++ b/lib/client/help.js @@ -32,8 +32,14 @@ var CloudCmd, Util, DOM; url : 'https://api.github.com/markdown', data : Util.stringifyJSON(lData), success:function(pResult){ + var lDiv = DOM.anyload({ + name : 'div', + style : 'white-space: normal;', + inner : pResult.toString() + }); + Images.hideLoad(); - CloudCmd.View.show(pResult); + CloudCmd.View.show(lDiv); }, error: Images.showError