page-demo.coffee 743 B

12345678910111213141516171819
  1. $ ->
  2. Simditor.locale = 'en-US'
  3. toolbar= ['title', 'bold', 'italic', 'underline', 'strikethrough', 'fontScale', 'color', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent', 'alignment']
  4. mobileToolbar=["bold","underline","strikethrough","color","ul","ol"]
  5. toolbar = mobileToolbar if mobilecheck()
  6. editor = new Simditor
  7. textarea: $('#txt-content')
  8. placeholder: '这里输入文字...'
  9. toolbar: toolbar
  10. pasteImage: true
  11. defaultImage: 'assets/images/image.png'
  12. upload: if location.search == '?upload' then {url: '/upload'} else false
  13. $preview = $('#preview')
  14. if $preview.length > 0
  15. editor.on 'valuechanged', (e) ->
  16. $preview.html editor.getValue()