283 lines
9.1 KiB
JavaScript
Executable File
283 lines
9.1 KiB
JavaScript
Executable File
define([
|
|
'summernote/bs3/ui',
|
|
'summernote/base/core/dom',
|
|
'summernote/base/summernote-en-US',
|
|
'summernote/base/module/Editor',
|
|
'summernote/base/module/Clipboard',
|
|
'summernote/base/module/Dropzone',
|
|
'summernote/base/module/Codeview',
|
|
'summernote/base/module/Statusbar',
|
|
'summernote/base/module/Fullscreen',
|
|
'summernote/base/module/Handle',
|
|
'summernote/base/module/AutoLink',
|
|
'summernote/base/module/AutoSync',
|
|
'summernote/base/module/Placeholder',
|
|
'summernote/base/module/Buttons',
|
|
'summernote/base/module/Toolbar',
|
|
'summernote/base/module/LinkDialog',
|
|
'summernote/base/module/LinkPopover',
|
|
'summernote/base/module/ImageDialog',
|
|
'summernote/base/module/ImagePopover',
|
|
'summernote/base/module/TablePopover',
|
|
'summernote/base/module/VideoDialog',
|
|
'summernote/base/module/HelpDialog',
|
|
'summernote/base/module/AirPopover',
|
|
'summernote/base/module/HintPopover'
|
|
], function (
|
|
ui, dom, lang,
|
|
Editor, Clipboard, Dropzone, Codeview, Statusbar, Fullscreen, Handle, AutoLink, AutoSync, Placeholder,
|
|
Buttons, Toolbar, LinkDialog, LinkPopover, ImageDialog, ImagePopover, TablePopover, VideoDialog, HelpDialog, AirPopover, HintPopover
|
|
) {
|
|
|
|
$.summernote = $.extend($.summernote, {
|
|
version: '@VERSION',
|
|
ui: ui,
|
|
dom: dom,
|
|
|
|
plugins: {},
|
|
|
|
options: {
|
|
modules: {
|
|
'editor': Editor,
|
|
'clipboard': Clipboard,
|
|
'dropzone': Dropzone,
|
|
'codeview': Codeview,
|
|
'statusbar': Statusbar,
|
|
'fullscreen': Fullscreen,
|
|
'handle': Handle,
|
|
// FIXME: HintPopover must be front of autolink
|
|
// - Script error about range when Enter key is pressed on hint popover
|
|
'hintPopover': HintPopover,
|
|
'autoLink': AutoLink,
|
|
'autoSync': AutoSync,
|
|
'placeholder': Placeholder,
|
|
'buttons': Buttons,
|
|
'toolbar': Toolbar,
|
|
'linkDialog': LinkDialog,
|
|
'linkPopover': LinkPopover,
|
|
'imageDialog': ImageDialog,
|
|
'imagePopover': ImagePopover,
|
|
'tablePopover': TablePopover,
|
|
'videoDialog': VideoDialog,
|
|
'helpDialog': HelpDialog,
|
|
'airPopover': AirPopover
|
|
},
|
|
|
|
buttons: {},
|
|
|
|
lang: 'en-US',
|
|
|
|
// toolbar
|
|
toolbar: [
|
|
['style', ['style']],
|
|
['font', ['bold', 'underline', 'clear']],
|
|
['fontname', ['fontname']],
|
|
['color', ['color']],
|
|
['para', ['ul', 'ol', 'paragraph']],
|
|
['table', ['table']],
|
|
['insert', ['link', 'picture', 'video']],
|
|
['view', ['fullscreen', 'codeview', 'help']]
|
|
],
|
|
|
|
// popover
|
|
popover: {
|
|
image: [
|
|
['imagesize', ['imageSize100', 'imageSize50', 'imageSize25']],
|
|
['float', ['floatLeft', 'floatRight', 'floatNone']],
|
|
['remove', ['removeMedia']]
|
|
],
|
|
link: [
|
|
['link', ['linkDialogShow', 'unlink']]
|
|
],
|
|
table: [
|
|
['add', ['addRowDown', 'addRowUp', 'addColLeft', 'addColRight']],
|
|
['delete', ['deleteRow', 'deleteCol', 'deleteTable']]
|
|
],
|
|
air: [
|
|
['color', ['color']],
|
|
['font', ['bold', 'underline', 'clear']],
|
|
['para', ['ul', 'paragraph']],
|
|
['table', ['table']],
|
|
['insert', ['link', 'picture']]
|
|
]
|
|
},
|
|
|
|
// air mode: inline editor
|
|
airMode: false,
|
|
|
|
width: null,
|
|
height: null,
|
|
linkTargetBlank: true,
|
|
|
|
focus: false,
|
|
tabSize: 4,
|
|
styleWithSpan: true,
|
|
shortcuts: true,
|
|
textareaAutoSync: true,
|
|
direction: null,
|
|
tooltip: 'auto',
|
|
|
|
styleTags: ['p', 'blockquote', 'pre', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'],
|
|
|
|
fontNames: [
|
|
'Arial', 'Arial Black', 'Comic Sans MS', 'Courier New',
|
|
'Helvetica Neue', 'Helvetica', 'Impact', 'Lucida Grande',
|
|
'Tahoma', 'Times New Roman', 'Verdana'
|
|
],
|
|
|
|
fontSizes: ['8', '9', '10', '11', '12', '14', '18', '24', '36'],
|
|
|
|
// pallete colors(n x n)
|
|
colors: [
|
|
['#000000', '#424242', '#636363', '#9C9C94', '#CEC6CE', '#EFEFEF', '#F7F7F7', '#FFFFFF'],
|
|
['#FF0000', '#FF9C00', '#FFFF00', '#00FF00', '#00FFFF', '#0000FF', '#9C00FF', '#FF00FF'],
|
|
['#F7C6CE', '#FFE7CE', '#FFEFC6', '#D6EFD6', '#CEDEE7', '#CEE7F7', '#D6D6E7', '#E7D6DE'],
|
|
['#E79C9C', '#FFC69C', '#FFE79C', '#B5D6A5', '#A5C6CE', '#9CC6EF', '#B5A5D6', '#D6A5BD'],
|
|
['#E76363', '#F7AD6B', '#FFD663', '#94BD7B', '#73A5AD', '#6BADDE', '#8C7BC6', '#C67BA5'],
|
|
['#CE0000', '#E79439', '#EFC631', '#6BA54A', '#4A7B8C', '#3984C6', '#634AA5', '#A54A7B'],
|
|
['#9C0000', '#B56308', '#BD9400', '#397B21', '#104A5A', '#085294', '#311873', '#731842'],
|
|
['#630000', '#7B3900', '#846300', '#295218', '#083139', '#003163', '#21104A', '#4A1031']
|
|
],
|
|
|
|
lineHeights: ['1.0', '1.2', '1.4', '1.5', '1.6', '1.8', '2.0', '3.0'],
|
|
|
|
tableClassName: 'table table-bordered',
|
|
|
|
insertTableMaxSize: {
|
|
col: 10,
|
|
row: 10
|
|
},
|
|
|
|
dialogsInBody: false,
|
|
dialogsFade: false,
|
|
|
|
maximumImageFileSize: null,
|
|
|
|
callbacks: {
|
|
onInit: null,
|
|
onFocus: null,
|
|
onBlur: null,
|
|
onEnter: null,
|
|
onKeyup: null,
|
|
onKeydown: null,
|
|
onImageUpload: null,
|
|
onImageUploadError: null
|
|
},
|
|
|
|
codemirror: {
|
|
mode: 'text/html',
|
|
htmlMode: true,
|
|
lineNumbers: true
|
|
},
|
|
|
|
keyMap: {
|
|
pc: {
|
|
'ENTER': 'insertParagraph',
|
|
'CTRL+Z': 'undo',
|
|
'CTRL+Y': 'redo',
|
|
'TAB': 'tab',
|
|
'SHIFT+TAB': 'untab',
|
|
'CTRL+B': 'bold',
|
|
'CTRL+I': 'italic',
|
|
'CTRL+U': 'underline',
|
|
'CTRL+SHIFT+S': 'strikethrough',
|
|
'CTRL+BACKSLASH': 'removeFormat',
|
|
'CTRL+SHIFT+L': 'justifyLeft',
|
|
'CTRL+SHIFT+E': 'justifyCenter',
|
|
'CTRL+SHIFT+R': 'justifyRight',
|
|
'CTRL+SHIFT+J': 'justifyFull',
|
|
'CTRL+SHIFT+NUM7': 'insertUnorderedList',
|
|
'CTRL+SHIFT+NUM8': 'insertOrderedList',
|
|
'CTRL+LEFTBRACKET': 'outdent',
|
|
'CTRL+RIGHTBRACKET': 'indent',
|
|
'CTRL+NUM0': 'formatPara',
|
|
'CTRL+NUM1': 'formatH1',
|
|
'CTRL+NUM2': 'formatH2',
|
|
'CTRL+NUM3': 'formatH3',
|
|
'CTRL+NUM4': 'formatH4',
|
|
'CTRL+NUM5': 'formatH5',
|
|
'CTRL+NUM6': 'formatH6',
|
|
'CTRL+ENTER': 'insertHorizontalRule',
|
|
'CTRL+K': 'linkDialog.show'
|
|
},
|
|
|
|
mac: {
|
|
'ENTER': 'insertParagraph',
|
|
'CMD+Z': 'undo',
|
|
'CMD+SHIFT+Z': 'redo',
|
|
'TAB': 'tab',
|
|
'SHIFT+TAB': 'untab',
|
|
'CMD+B': 'bold',
|
|
'CMD+I': 'italic',
|
|
'CMD+U': 'underline',
|
|
'CMD+SHIFT+S': 'strikethrough',
|
|
'CMD+BACKSLASH': 'removeFormat',
|
|
'CMD+SHIFT+L': 'justifyLeft',
|
|
'CMD+SHIFT+E': 'justifyCenter',
|
|
'CMD+SHIFT+R': 'justifyRight',
|
|
'CMD+SHIFT+J': 'justifyFull',
|
|
'CMD+SHIFT+NUM7': 'insertUnorderedList',
|
|
'CMD+SHIFT+NUM8': 'insertOrderedList',
|
|
'CMD+LEFTBRACKET': 'outdent',
|
|
'CMD+RIGHTBRACKET': 'indent',
|
|
'CMD+NUM0': 'formatPara',
|
|
'CMD+NUM1': 'formatH1',
|
|
'CMD+NUM2': 'formatH2',
|
|
'CMD+NUM3': 'formatH3',
|
|
'CMD+NUM4': 'formatH4',
|
|
'CMD+NUM5': 'formatH5',
|
|
'CMD+NUM6': 'formatH6',
|
|
'CMD+ENTER': 'insertHorizontalRule',
|
|
'CMD+K': 'linkDialog.show'
|
|
}
|
|
},
|
|
icons: {
|
|
'align': 'note-icon-align',
|
|
'alignCenter': 'note-icon-align-center',
|
|
'alignJustify': 'note-icon-align-justify',
|
|
'alignLeft': 'note-icon-align-left',
|
|
'alignRight': 'note-icon-align-right',
|
|
'rowBelow': 'note-icon-row-below',
|
|
'colBefore': 'note-icon-col-before',
|
|
'colAfter': 'note-icon-col-after',
|
|
'rowAbove': 'note-icon-row-above',
|
|
'rowRemove': 'note-icon-row-remove',
|
|
'colRemove': 'note-icon-col-remove',
|
|
'indent': 'note-icon-align-indent',
|
|
'outdent': 'note-icon-align-outdent',
|
|
'arrowsAlt': 'note-icon-arrows-alt',
|
|
'bold': 'note-icon-bold',
|
|
'caret': 'note-icon-caret',
|
|
'circle': 'note-icon-circle',
|
|
'close': 'note-icon-close',
|
|
'code': 'note-icon-code',
|
|
'eraser': 'note-icon-eraser',
|
|
'font': 'note-icon-font',
|
|
'frame': 'note-icon-frame',
|
|
'italic': 'note-icon-italic',
|
|
'link': 'note-icon-link',
|
|
'unlink': 'note-icon-chain-broken',
|
|
'magic': 'note-icon-magic',
|
|
'menuCheck': 'note-icon-menu-check',
|
|
'minus': 'note-icon-minus',
|
|
'orderedlist': 'note-icon-orderedlist',
|
|
'pencil': 'note-icon-pencil',
|
|
'picture': 'note-icon-picture',
|
|
'question': 'note-icon-question',
|
|
'redo': 'note-icon-redo',
|
|
'square': 'note-icon-square',
|
|
'strikethrough': 'note-icon-strikethrough',
|
|
'subscript': 'note-icon-subscript',
|
|
'superscript': 'note-icon-superscript',
|
|
'table': 'note-icon-table',
|
|
'textHeight': 'note-icon-text-height',
|
|
'trash': 'note-icon-trash',
|
|
'underline': 'note-icon-underline',
|
|
'undo': 'note-icon-undo',
|
|
'unorderedlist': 'note-icon-unorderedlist',
|
|
'video': 'note-icon-video'
|
|
}
|
|
}
|
|
});
|
|
});
|