Skip to content

Commit 75c93f3

Browse files
fixed docs opening issues, missed line in previous commit
1 parent 6234d8e commit 75c93f3

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

cache/projectTemplate.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Class name="UMLExplorer.ClassView">
44
<Description>
55
Class contains methods that return structured class data.</Description>
6-
<TimeChanged>63670,72515.130814</TimeChanged>
6+
<TimeChanged>63671,64479.682329</TimeChanged>
77
<TimeCreated>63653,67019.989197</TimeCreated>
88

99
<Method name="getClassTree">
@@ -60,6 +60,7 @@ return structured data about class</Description>
6060
6161
set oProperties = ##class(%ZEN.proxyObject).%New()
6262
set oClass.NAMESPACE = $NAMESPACE
63+
set oClass.ABSTRACT = classDefinition.Abstract
6364
set oClass.super = classDefinition.Super
6465
set oClass.properties = oProperties
6566
set count = classDefinition.Properties.Count()
@@ -220,7 +221,7 @@ return structured data about class</Description>
220221
</Class>
221222

222223

223-
<Project name="UMLExplorer" LastModified="2015-04-28 19:55:49.450783">
224+
<Project name="UMLExplorer" LastModified="2015-04-28 23:30:37.941872">
224225
<Items>
225226
<ProjectItem name="UMLExplorer.ClassView" type="CLS"></ProjectItem>
226227
<ProjectItem name="UMLExplorer.Router" type="CLS"></ProjectItem>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "CacheUMLExplorer",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "An UML Class explorer for InterSystems Caché",
55
"directories": {
66
"test": "test"

web/jsLib/joint.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17222,9 +17222,9 @@ if ( typeof window === "object" && typeof window.document === "object" ) {
1722217222
tspan.node.style[j] = setup["STYLES"][j];
1722317223
}
1722417224
}
17225-
if (opt.clickHandler) {
17226-
tspan.node.onclick = opt.clickHandler;
17227-
}
17225+
}
17226+
if (opt.clickHandler) {
17227+
tspan.node.onclick = opt.clickHandler;
1722817228
}
1722917229
// Make sure the textContent is never empty. If it is, add an additional
1723017230
// space (an invisible character) so that following lines are correctly

web/jsLib/joint.shapes.uml.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ joint.shapes.uml.Class = joint.shapes.basic.Generic.extend({
103103

104104
attrs['.uml-class-' + rect.type + '-text'].text = lines.join('\n');
105105
if (nameClickHandler) {
106-
if (rect.type === "name") attrs['.uml-class-' + rect.type + '-text'].clickHandler = nameClickHandler;
106+
if (rect.type === "name") {
107+
attrs['.uml-class-' + rect.type + '-text'].clickHandler = nameClickHandler;
108+
}
107109
}
108110
attrs['.uml-class-' + rect.type + '-rect'].height = rectHeight;
109111
attrs['.uml-class-' + rect.type + '-rect'].transform = 'translate(0,'+ offsetY + ')';

0 commit comments

Comments
 (0)