Skip to content

Commit

Permalink
Compile after description add
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Jan 22, 2016
1 parent dab3748 commit 147a364
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CacheClassExplorer",
"version": "1.14.2",
"version": "1.14.3",
"description": "Class Explorer for InterSystems Caché",
"directories": {
"test": "test"
Expand Down
6 changes: 6 additions & 0 deletions web/js/ClassView.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,12 @@ ClassView.prototype.getPropertyHoverText = function (prop, type) {
: "<span class=\"syntax-keyword\">ClientDataType</span>="
+ "<span class=\"syntax-string\">" + data + "</span>";
},
"CompileAfter": function (data) {
return "<span class=\"syntax-keyword\">CompileAfter</span>="
+ data.split(",").map(function (e) {
return "<span class=\"syntax-names\">" + e + "</span>"
}).join(", ");
},
"DdlAllowed": 1,
"Deployed": 1,
"Dynamic": 1,
Expand Down

0 comments on commit 147a364

Please sign in to comment.