Files
szkoleniauryzaj.pl/wp-content/plugins/wp-smart-editor/js/theme_editor.js
2024-11-10 21:08:49 +01:00

27 lines
873 B
JavaScript

(function ($) {
$(document).ready(function () {
if (edt.modes === 'js') {
edt.modes = 'javascript';
}
if (edt.modes === 'html') {
edt.modes = 'xml';
}
var themeArea = document.getElementById('newcontent');
height = themeArea.offsetHeight;
template = document.getElementById('template');
wrapper = document.createElement('div');
themeEditor = CodeMirror.fromTextArea(themeArea, {
mode: edt.modes,
lineNumbers: true,
extraKeys: {"Ctrl-Space": "autocomplete"}
});
wrapper.className = 'wpse-theme-editor';
wrapper.appendChild(themeEditor.getWrapperElement());
template.parentNode.insertBefore(wrapper, template);
themeEditor.setSize(null, height);
themeEditor.refresh();
});
})(jQuery);