notes.kaplon.us/views/index.hbs

52 lines
1.3 KiB
Handlebars
Raw Normal View History

2016-02-16 17:52:38 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jody's CodeMirror</title>
<link rel="stylesheet" href="lib/codemirror.css">
<script src="lib/codemirror.js"></script>
<script src="mode/markdown/markdown.js"></script>
<script src="keymap/vim.js"></script>
<style type="text/css">
.CodeMirror {
border: 1px solid #eee;
height: auto;
}
</style>
</head>
<body>
<form><textarea id="editor" name="editor">
{{{notetxt}}}
2016-02-16 17:52:38 -05:00
</textarea></form>
<script>
var editor = CodeMirror.fromTextArea(document.getElementById("editor"), {
mode: "markdown",
lineNumbers: "true",
keyMap: "vim",
viewportMargin: Infinity
});
var typingTimer;
editor.on("changes", function() {
clearTimeout(typingTimer);
typingTimer = setTimeout(
function() {
console.log(editor.getValue());
var request = new XMLHttpRequest();
request.onreadystatechange = function () {
var DONE = this.DONE || 4;
if (this.readyState === DONE){
console.log('ajax is done.');
}
};
request.open('POST', '/', true);
request.send(editor.getValue());
2016-02-16 17:52:38 -05:00
},
2000
);
});
</script>
</body>
</html>