hdjs
Version:
hdjs framework
27 lines (25 loc) • 976 B
JavaScript
(function() {
$(function() {
var editor;
editor = new Simditor({
textarea: $('#txt-content1'),
placeholder: '这里输入文字...',
pasteImage: true,
toolbar: ['title', 'bold', 'italic', 'underline', 'strikethrough', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent'],
defaultImage: 'assets/images/image.png',
upload: location.search === '?upload' ? {
url: '/upload'
} : false
});
return editor = new Simditor({
textarea: $('#txt-content2'),
placeholder: '这里输入文字...',
pasteImage: true,
toolbar: ['title', 'bold', 'italic', 'underline', 'strikethrough', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent'],
defaultImage: 'assets/images/image.png',
upload: location.search === '?upload' ? {
url: '/upload'
} : false
});
});
}).call(this);