Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 8529b10

Browse files
Fixing baseurl for Bot Fwk inspector
1 parent 65fb45c commit 8529b10

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Plugins/Vorlon/plugins/botFrameworkInspector/vorlon.botFrameworkInspector.dashboard.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
declare var cytoscape: any;
44

55
module VORLON {
6+
declare var vorlonBaseURL: string;
7+
68
export class BotFrameworkInspectorDashboard extends DashboardPlugin {
9+
710
constructor() {
811
super("botFrameworkInspector", "control.html", "control.css");
912
this._ready = false;
@@ -114,7 +117,7 @@ module VORLON {
114117
callback();
115118
};
116119

117-
script.src = url;
120+
script.src = vorlonBaseURL + url;
118121
document.getElementsByTagName("head")[0].appendChild(script);
119122
}
120123

0 commit comments

Comments
 (0)