welcome.js 464 B

1234567891011121314151617181920212223
  1. /**
  2. * Created by zhang on 2020/1/2.
  3. */
  4. var editor = CodeMirror.fromTextArea(document.getElementById("editor"), {
  5. mode: "text/html",
  6. lineNumbers: true,
  7. theme:"material"
  8. });
  9. editor.setSize('auto','650px');
  10. $(document).ready(function() {
  11. $("#welcome_save").click(function () {
  12. $("form").submit();
  13. });
  14. $("#review").click(function () {
  15. // $("#reviewBody").html(editor.getValue());
  16. $("#view").modal("show")
  17. });
  18. });