source.js 571 B

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