From: Alexander Ebert Date: Sun, 14 Dec 2014 12:58:12 +0000 (+0100) Subject: Removed debug output X-Git-Tag: 2.1.0_Beta_1~9 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9ea24cf4a6b035dd0f0ef239c783ccef78a8c0eb;p=GitHub%2FWoltLab%2FWCF.git Removed debug output --- diff --git a/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js b/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js index 6294a6cb78..aad1352697 100644 --- a/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js +++ b/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js @@ -1014,7 +1014,6 @@ RedactorPlugins.wbbcode = function() { data = data.replace(/

<\/p>/g, '
'); - console.debug(data); WCF.System.Event.fireEvent('com.woltlab.wcf.redactor', 'afterConvertToHtml', { data: data }); return data; @@ -1597,11 +1596,6 @@ RedactorPlugins.wbbcode = function() { $tagName = 'DIV'; } - console.debug(referenceElement); - console.debug(target); - console.debug(referenceElement[target]); - console.debug(""); - // no previous/next element or it is not a

(default) or

(within quotes) if (referenceElement[target] === null || referenceElement[target].tagName !== $tagName) { $('<' + $tagName + '>' + this.opts.invisibleSpace + '')[(target === 'previousElementSibling' ? 'insertBefore' : 'insertAfter')](referenceElement);