source.js 576 B

123456789101112131415161718
  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.setOption('fontSize', '14px');
  6. scEditor.setOption('hScrollBarAlwaysVisible', false);
  7. scEditor.setOption('wrap', true);
  8. scEditor.setReadOnly(true);
  9. scEditor.renderer.updateFull();
  10. let currentBasePath = ($('#page-type-source').data('entrypath') !== 'home') ? $('#page-type-source').data('entrypath') : '';
  11. //=include ../modals/create.js
  12. //=include ../modals/move.js
  13. }