source.js 443 B

123456789101112131415
  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. }