Skip to content

Commit 37f7521

Browse files
private and public methods visualization
1 parent 9614a6e commit 37f7521

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/js/ClassView.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ ClassView.prototype.createClassInstance = function (name, classMetaData) {
112112
for (n in met) {
113113
insertString(
114114
arr,
115-
"+ " + n + (met[n]["returns"] ? ": " + met[n]["returns"] : ""),
115+
(met[n]["private"] ? "- " : "+ ") + n
116+
+ (met[n]["returns"] ? ": " + met[n]["returns"] : ""),
116117
(met[n]["classMethod"] ?
117118
"\x1b" + JSON.stringify({STYLES:{
118119
textDecoration: "underline"

web/jsLib/joint.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17223,7 +17223,6 @@ if ( typeof window === "object" && typeof window.document === "object" ) {
1722317223
}
1722417224
}
1722517225
if (opt.clickHandler) {
17226-
console.log(1);
1722717226
tspan.node.onclick = opt.clickHandler;
1722817227
}
1722917228
}

0 commit comments

Comments
 (0)