Remove Key buffer label from template (it wasn't useful); adjust height percentages accordingly.

This commit is contained in:
jkaplon 2016-10-24 13:06:44 -04:00
parent 4d736d63a3
commit 6b7800fb66
2 changed files with 4 additions and 15 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
# bind port 5984 to localhost in order to be able to ssh tunnel into couchdb futon admin web interface.
docker run -d --name couchdb --restart=always -v /data/couchdb:/usr/local/var/lib/couchdb -p 127.0.0.1:5984:5984 klaemo/couchdb:1.6.1
docker run -d --name couchdb --restart=always -v /data/couchdb:/usr/local/var/lib/couchdb -p 127.0.0.1:5984:5984 klaemo/couchdb:1.6.1-couchperuser
# Sleep for 1sec to let couchdb container start up
sleep 1

View File

@ -20,7 +20,7 @@
html, body { height: 100%; margin: 0; padding: 0; }
.wrap {
position: relative;
height: 96%;
height: 100%;
background: #eee;
padding: 15px;
box-sizing: border-box;
@ -31,11 +31,11 @@
border-radius: 5px;
border: 1px solid #999;
position: relative;
height: 96%;
height: 100%;
padding: 1px;
}
.CodeMirror {
height: 100%;
height: 96%;
}
</style>
<!-- favicon design by Rockicon of thenounproject.com -->
@ -47,7 +47,6 @@
<textarea id="editor" name="editor">{{{notetxt}}}</textarea>
</div>
</div>
<div style="font-size: 13px; width: 300px; height: 30px;">Key buffer: <span id="command-display"></span></div>
<script>
var editor = CodeMirror.fromTextArea(document.getElementById("editor"), {
@ -69,16 +68,6 @@
//CodeMirror.Vim.map(' c', '<Esc>o- [ ] ', 'normal')
//CodeMirror.Vim.map(' x', '<ESC>;s/\[\s\]/[x]/g<CR>;noh<CR>', 'normal')
//CodeMirror.commands.save = function(){ alert("Saving"); }
var commandDisplay = document.getElementById('command-display');
var keys = ''
CodeMirror.on(editor, 'vim-keypress', function(key) {
keys = keys + key
commandDisplay.innerHTML = keys;
});
CodeMirror.on(editor, 'vim-command-done', function(e) {
keys = '';
commandDisplay.innerHTML = keys;
});
var typingTimer;
editor.on("changes", function() {