Actually populate editor with snippet

dashboard
Pat Hartl 2023-01-28 16:43:59 -06:00
parent 58e4886441
commit 3a65e2563b
2 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@
});
window.Editor.onDidChangeModelContent(function (e) {
$('#Contents').val(editor.getModel().getValue());
$('#Contents').val(window.Editor.getModel().getValue());
});
});

View File

@ -111,7 +111,7 @@
});
window.Editor.onDidChangeModelContent(function (e) {
$('#Contents').val(editor.getModel().getValue());
$('#Contents').val(window.Editor.getModel().getValue());
});
});