From 147a364944e83c9f1d839ff19c3a970182c6ee0e Mon Sep 17 00:00:00 2001 From: ZitRo Date: Fri, 22 Jan 2016 21:42:26 +0200 Subject: [PATCH] Compile after description add --- package.json | 2 +- web/js/ClassView.js | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b85be29..d755136 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "CacheClassExplorer", - "version": "1.14.2", + "version": "1.14.3", "description": "Class Explorer for InterSystems Caché", "directories": { "test": "test" diff --git a/web/js/ClassView.js b/web/js/ClassView.js index 651a7d3..6b65570 100755 --- a/web/js/ClassView.js +++ b/web/js/ClassView.js @@ -361,6 +361,12 @@ ClassView.prototype.getPropertyHoverText = function (prop, type) { : "ClientDataType=" + "" + data + ""; }, + "CompileAfter": function (data) { + return "CompileAfter=" + + data.split(",").map(function (e) { + return "" + e + "" + }).join(", "); + }, "DdlAllowed": 1, "Deployed": 1, "Dynamic": 1,