%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
/*!
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2021
* @package yii2-editors
* @version 1.0.1
*
* Krajee jQuery Plugin enhancements to Summernote Editor
*/
(function (factory) {
'use strict';
//noinspection JSUnresolvedVariable
if (typeof define === 'function' && define.amd) { // jshint ignore:line
// AMD. Register as an anonymous module.
define(['jquery'], factory); // jshint ignore:line
} else { // noinspection JSUnresolvedVariable
if (typeof module === 'object' && module.exports) { // jshint ignore:line
// Node/CommonJS
// noinspection JSUnresolvedVariable
module.exports = factory(require('jquery')); // jshint ignore:line
} else {
// Browser globals
factory(window.jQuery);
}
}
}(function ($) {
'use strict';
var KvSummernote = function (element, options) {
var self = this;
self.$element = $(element);
self.options = options;
self.customOptions = $.extend(true, {}, options.customOptions);
delete (self.options.customOptions);
self.init();
};
//noinspection JSUnusedGlobalSymbols
KvSummernote.prototype = {
constructor: KvSummernote,
init: function () {
var self = this, $el = self.$element, opts = self.customOptions, $form = $el.closest('form'),
initVal = $el.val();
if (opts.enableHintEmojis) {
self.initEmojis();
}
if (opts.autoFormatCode) {
$el.off('summernote.codeview.toggled').on('summernote.codeview.toggled', function () {
self.formatCode();
});
}
if ($form && $form.length) {
$form.on('reset', function () {
$el.summernote('reset');
$el.summernote('code', initVal);
});
}
$el.summernote(self.options);
},
destroy: function () {
var self = this;
self.$element.summernote('destroy');
},
formatCode: function () {
var self = this, $code = self.$element.next().find('textarea.note-codable'),
editor, totalLines, totalChars;
if ($code.length) {
editor = $code.data('cmEditor');
if (editor) {
totalLines = editor.lineCount();
totalChars = editor.getTextArea().value.length;
editor.autoFormatRange({line: 0, ch: 0}, {line: totalLines, ch: totalChars});
}
}
},
initEmojis: function () {
if (window.kvEmojis && window.kvEmojisUrls) {
return;
}
$.ajax({
url: 'https://api.github.com/emojis',
async: false
}).then(function (data) {
window.kvEmojis = Object.keys(data);
window.kvEmojiUrls = data;
});
}
};
$.fn.kvSummernote = function (option) {
var args = Array.apply(null, arguments), retvals = [];
args.shift();
this.each(function () {
var self = $(this), data = self.data('kvSummernote'), options = typeof option === 'object' && option, opt;
if (!data) {
opt = $.extend(true, {}, $.fn.kvSummernote.defaults, options, self.data());
data = new KvSummernote(this, opt);
self.data('kvSummernote', data);
}
if (typeof option === 'string') {
retvals.push(data[option].apply(data, args));
}
});
switch (retvals.length) {
case 0:
return this;
case 1:
return retvals[0];
default:
return retvals;
}
};
$.fn.kvSummernote.defaults = {
enableHintEmojis: true,
autoFormatCode: true
};
$.fn.kvSummernote.Constructor = KvSummernote;
}));