diff --git a/bbcode/parser.ts b/bbcode/parser.ts index 880d72b..d8bd799 100644 --- a/bbcode/parser.ts +++ b/bbcode/parser.ts @@ -145,19 +145,19 @@ export class BBCodeParser { tagStart = i; paramStart = -1; } else { - console.log('Hit depth tagOpen', depth); + // console.log('Hit depth tagOpen', depth); } } else if(c === '=' && paramStart === -1) { if (depth <= 1) { paramStart = i; } else { - console.log('Hit depth paramStart', depth); + // console.log('Hit depth paramStart', depth); } } else if(c === ']') { depth--; if (depth !== 0) { - console.log('Hit depth tagClose', depth); + // console.log('Hit depth tagClose', depth); } if (depth === 0) { diff --git a/chat/Chat.vue b/chat/Chat.vue index 61b2cd0..de5a916 100644 --- a/chat/Chat.vue +++ b/chat/Chat.vue @@ -33,6 +33,7 @@ import {InlineDisplayMode} from '../interfaces';