Skip to content

Commit

Permalink
private and public methods visualization
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Apr 28, 2015
1 parent 9614a6e commit 37f7521
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion web/js/ClassView.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion web/jsLib/joint.js
Original file line number Diff line number Diff line change
Expand Up @@ -17223,7 +17223,6 @@ if ( typeof window === "object" && typeof window.document === "object" ) {
}
}
if (opt.clickHandler) {
console.log(1);
tspan.node.onclick = opt.clickHandler;
}
}
Expand Down

0 comments on commit 37f7521

Please sign in to comment.