Skip to content

Commit 8c7dab9

Browse files
No initial class list bug fix
1 parent 561fd1a commit 8c7dab9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "CacheClassExplorer",
3-
"version": "1.19.0",
3+
"version": "1.19.1",
44
"description": "Class Explorer for InterSystems Caché",
55
"directories": { "test": "test" },
66
"dependencies": {},

web/js/Source.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ var Source = function (cacheUMLExplorer) {
1414
*/
1515
Source.prototype.getClassTree = function (includeMapped, callback) {
1616

17+
var ns = (this.cue.NAMESPACE ? "?namespace=" + encodeURIComponent(this.cue.NAMESPACE) : "");
18+
1719
lib.load(
1820
this.URL + "/GetClassTree"
19-
+ (this.cue.NAMESPACE ? "?namespace=" + encodeURIComponent(this.cue.NAMESPACE) : "")
20-
+ "&mapped=" + (includeMapped ? "1" : "0"),
21+
+ ns
22+
+ (ns ? "&" : "?") + "mapped=" + (includeMapped ? "1" : "0"),
2123
null,
2224
callback
2325
);

0 commit comments

Comments
 (0)