diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-02-28 21:32:48 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-02-28 21:32:48 +0000 |
| commit | 28ebae4525f35672acd6253b3022bdb8cdc1cbd1 (patch) | |
| tree | f78cd401095f6405057d3e67509218483f789413 /instance-manager.js | |
| parent | 46d3ba84ed407548d368dd146393e747cfb2d0af (diff) | |
| download | sql-plus-plus-28ebae4525f35672acd6253b3022bdb8cdc1cbd1.tar.xz sql-plus-plus-28ebae4525f35672acd6253b3022bdb8cdc1cbd1.zip | |
Update readme. Fix result parsing bug. Rearrange files
- Prefix query result fields with an underscore to avoid clashing with JS builtin property/function names which causes issues with Tabulator
- Move html files into their own dir
Diffstat (limited to 'instance-manager.js')
| -rw-r--r-- | instance-manager.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instance-manager.js b/instance-manager.js index 96151ab..2debb57 100644 --- a/instance-manager.js +++ b/instance-manager.js @@ -13,7 +13,7 @@ function createNewConnection() { function registerNewInstance(payload) { tabGroup.addTab({ title: getTabTitle(payload.connectionConfig), - src: "file://" + __dirname + "/editor-instance.html", + src: "file://" + __dirname + "/html/editor-instance.html", visible: true, active: true, webviewAttributes: {"nodeintegration":true}, |