diff --git a/web/js/ClassView.js b/web/js/ClassView.js index 01eed74..c342d68 100644 --- a/web/js/ClassView.js +++ b/web/js/ClassView.js @@ -112,7 +112,8 @@ ClassView.prototype.createClassInstance = function (name, classMetaData) { for (n in met) { insertString( arr, - "+ " + n + (met[n]["returns"] ? ": " + met[n]["returns"] : ""), + (met[n]["private"] ? "- " : "+ ") + n + + (met[n]["returns"] ? ": " + met[n]["returns"] : ""), (met[n]["classMethod"] ? "\x1b" + JSON.stringify({STYLES:{ textDecoration: "underline" diff --git a/web/jsLib/joint.js b/web/jsLib/joint.js index a9f2615..9e8085c 100644 --- a/web/jsLib/joint.js +++ b/web/jsLib/joint.js @@ -17223,7 +17223,6 @@ if ( typeof window === "object" && typeof window.document === "object" ) { } } if (opt.clickHandler) { - console.log(1); tspan.node.onclick = opt.clickHandler; } }