From 77d054cf52faf3ac0a56040cb29f40016a3c7453 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Wed, 23 Feb 2011 11:19:38 +0100 Subject: [PATCH] bugfix --- redakcja/static/js/wiki/view_editor_wysiwyg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redakcja/static/js/wiki/view_editor_wysiwyg.js b/redakcja/static/js/wiki/view_editor_wysiwyg.js index 8fe8051c..a3f42786 100644 --- a/redakcja/static/js/wiki/view_editor_wysiwyg.js +++ b/redakcja/static/js/wiki/view_editor_wysiwyg.js @@ -257,7 +257,7 @@ // if we want to surround text with quotes // not sure if just check if value has length == 2 - if (insertVal.length) == 2) { + if (insertVal.length == 2) { var startTag = insertVal[0]; var endTag = insertVal[1]; var textAreaOpened = editArea; -- 2.20.1