| Server IP : 74.208.250.37 / Your IP : 216.73.216.114 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : miferval ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/brainwavemx/public/node_modules/summernote/src/js/ |
Upload File : |
import $ from 'jquery';
import env from './core/env';
import lists from './core/lists';
import Context from './Context';
$.fn.extend({
/**
* Summernote API
*
* @param {Object|String}
* @return {this}
*/
summernote: function() {
const type = $.type(lists.head(arguments));
const isExternalAPICalled = type === 'string';
const hasInitOptions = type === 'object';
const options = $.extend({}, $.summernote.options, hasInitOptions ? lists.head(arguments) : {});
// Update options
options.langInfo = $.extend(true, {}, $.summernote.lang['en-US'], $.summernote.lang[options.lang]);
options.icons = $.extend(true, {}, $.summernote.options.icons, options.icons);
options.tooltip = options.tooltip === 'auto' ? !env.isSupportTouch : options.tooltip;
this.each((idx, note) => {
const $note = $(note);
if (!$note.data('summernote')) {
const context = new Context($note, options);
$note.data('summernote', context);
$note.data('summernote').triggerEvent('init', context.layoutInfo);
}
});
const $note = this.first();
if ($note.length) {
const context = $note.data('summernote');
if (isExternalAPICalled) {
return context.invoke.apply(context, lists.from(arguments));
} else if (options.focus) {
context.invoke('editor.focus');
}
}
return this;
},
});