You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
443 B

  1. if($('#page-type-source').length) {
  2. var scEditor = ace.edit("source-display");
  3. scEditor.setTheme("ace/theme/tomorrow_night");
  4. scEditor.getSession().setMode("ace/mode/markdown");
  5. scEditor.setReadOnly(true);
  6. scEditor.renderer.updateFull();
  7. let currentBasePath = ($('#page-type-source').data('entrypath') !== 'home') ? $('#page-type-source').data('entrypath') : '';
  8. //=include ../modals/create.js
  9. //=include ../modals/move.js
  10. }