noteEditor.html 954 B

123456789101112131415161718192021222324
  1. <div class="panel panel-default" ng-init="noteEditorOpen = false" ng-show="noteEditorOpen">
  2. <div class="panel-heading">
  3. <h3 class="panel-title">备注</h3>
  4. <span>(<a class="help" href="https://www.zybuluo.com/techird/note/46064" target="_blank">支持 GFM 语法书写</a>)</span>
  5. <i class="close-note-editor glyphicon glyphicon-remove" ng-click="closeNoteEditor()"></i>
  6. </div>
  7. <div class="panel-body">
  8. <div ng-show="noteEnabled"
  9. ui-codemirror="{ onLoad: codemirrorLoaded }"
  10. ng-model="noteContent"
  11. ui-codemirror-opts="{
  12. gfm: true,
  13. breaks: true,
  14. lineWrapping : true,
  15. mode: 'gfm',
  16. dragDrop: false,
  17. lineNumbers:true
  18. }">
  19. </div>
  20. <p ng-show="!noteEnabled" class="km-note-tips">
  21. 请选择节点编辑备注
  22. </p>
  23. </div>
  24. </div>