aboutsummaryrefslogtreecommitdiff
path: root/html/index.html
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2018-02-28 21:32:48 +0000
committerJames Barnett <noreply@jamesbarnett.xyz>2018-02-28 21:32:48 +0000
commit28ebae4525f35672acd6253b3022bdb8cdc1cbd1 (patch)
treef78cd401095f6405057d3e67509218483f789413 /html/index.html
parent46d3ba84ed407548d368dd146393e747cfb2d0af (diff)
downloadsql-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 'html/index.html')
-rw-r--r--html/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/html/index.html b/html/index.html
new file mode 100644
index 0000000..b1997bf
--- /dev/null
+++ b/html/index.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <title>SQL++</title>
+
+ <link rel="stylesheet" href="../node_modules/electron-tabs/electron-tabs.css"></link>
+ <link rel="stylesheet" href="../styles/instance-manager.css"></link>
+
+ </head>
+ <body>
+
+ <div class="etabs-tabgroup">
+ <div class="etabs-tabs"></div>
+ <div class="etabs-buttons">
+ <button id="new-connection">New connection</button>
+ </div>
+ </div>
+ <div class="etabs-tabgroup-footer"></div>
+ <div class="etabs-views"></div>
+
+ <script>
+ require("../instance-manager.js");
+ </script>
+ </body>
+</html> \ No newline at end of file