mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
13 lines
350 B
HTML
13 lines
350 B
HTML
<script>
|
|
var editor = CodeMirror.fromTextArea(document.getElementById("sql-editor"), {
|
|
lineNumbers: true,
|
|
mode: "text/x-sql",
|
|
lineWrapping: true,
|
|
});
|
|
editor.setOption("extraKeys", {
|
|
"Shift-Enter": function() {
|
|
document.getElementsByClassName("sql")[0].submit();
|
|
},
|
|
Tab: false
|
|
});
|
|
</script>
|