Файл: upload/admin/view/javascript/ckeditor/ckeditor_init.js
Строк: 38
<?php
// CKEditor */
function ckeditorInit(node, token) {
CKEDITOR.replace(node);
CKEDITOR.on('dialogDefinition', function (ev) {
for (i = 0; i < ev.data.definition.contents.length; i++) {
var button = ev.data.definition.contents[i].get('browse');
if (button !== null) {
button.hidden = false;
button.onClick = function() {
$('#modal-image').remove();
$.ajax({
url: 'index.php?route=common/filemanager&cke=' + this.filebrowser.target + '&token=' + token,
dataType: 'html',
success: function(html) {
$('body').append('<div class="modal ckeditor" id="modal-image">' + html + '</div>');
$('#modal-image').modal('show');
}
});
}
}
}
});
}
?>