Skip to content

Commit 147a364

Browse files
Compile after description add
1 parent dab3748 commit 147a364

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "CacheClassExplorer",
3-
"version": "1.14.2",
3+
"version": "1.14.3",
44
"description": "Class Explorer for InterSystems Caché",
55
"directories": {
66
"test": "test"

web/js/ClassView.js

+6
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,12 @@ ClassView.prototype.getPropertyHoverText = function (prop, type) {
361361
: "<span class=\"syntax-keyword\">ClientDataType</span>="
362362
+ "<span class=\"syntax-string\">" + data + "</span>";
363363
},
364+
"CompileAfter": function (data) {
365+
return "<span class=\"syntax-keyword\">CompileAfter</span>="
366+
+ data.split(",").map(function (e) {
367+
return "<span class=\"syntax-names\">" + e + "</span>"
368+
}).join(", ");
369+
},
364370
"DdlAllowed": 1,
365371
"Deployed": 1,
366372
"Dynamic": 1,

0 commit comments

Comments
 (0)