64 lines
1.5 KiB
JavaScript
Vendored
64 lines
1.5 KiB
JavaScript
Vendored
"use strict";
|
|
// Class definition
|
|
var KTCkeditor = function () {
|
|
// Private functions
|
|
var demos = function () {
|
|
ClassicEditor
|
|
.create(document.querySelector('#kt-ckeditor-1'))
|
|
.then(editor => {
|
|
console.log(editor);
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
});
|
|
|
|
ClassicEditor
|
|
.create(document.querySelector('#kt-ckeditor-2'))
|
|
.then(editor => {
|
|
console.log(editor);
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
});
|
|
|
|
ClassicEditor
|
|
.create(document.querySelector('#kt-ckeditor-3'))
|
|
.then(editor => {
|
|
console.log(editor);
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
});
|
|
|
|
ClassicEditor
|
|
.create(document.querySelector('#kt-ckeditor-4'))
|
|
.then(editor => {
|
|
console.log(editor);
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
});
|
|
|
|
ClassicEditor
|
|
.create(document.querySelector('#kt-ckeditor-5'))
|
|
.then(editor => {
|
|
console.log(editor);
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
});
|
|
}
|
|
|
|
return {
|
|
// public functions
|
|
init: function () {
|
|
demos();
|
|
}
|
|
};
|
|
}();
|
|
|
|
// Initialization
|
|
jQuery(document).ready(function () {
|
|
KTCkeditor.init();
|
|
});
|