]> BookStack Code Mirror - bookstack/blobdiff - resources/js/wysiwyg/plugin-codeeditor.js
Added 'Sort Book' action to chapters
[bookstack] / resources / js / wysiwyg / plugin-codeeditor.js
index db449021501fa72282ac63359c29242c2ed6ef53..82052a40d82bf167dda0f8577234c2145395c47d 100644 (file)
@@ -165,7 +165,6 @@ function register(editor, url) {
             showPopup(editor, textContent, '', (newCode, newLang) => {
                 const pre = doc.createElement('pre');
                 const code = doc.createElement('code');
-                console.log(newCode);
                 code.classList.add(`language-${newLang}`);
                 code.innerText = newCode;
                 pre.append(code);