Fixed editor visible in quick reply
authorAlexander Ebert <ebert@woltlab.com>
Tue, 21 Oct 2014 20:16:31 +0000 (22:16 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Tue, 21 Oct 2014 20:16:31 +0000 (22:16 +0200)
wcfsetup/install/files/js/WCF.Message.js

index 5fb2e37680136e21f4364708b59005dc7519922f..5e198d74a45c49bea3b069c794bd59f8028d8277 100644 (file)
@@ -945,7 +945,7 @@ WCF.Message.QuickReply = Class.extend({
                // show spinner and hide Redactor
                var $messageBody = this._container.find('.messageQuickReplyContent .messageBody');
                $('<span class="icon icon48 icon-spinner" />').appendTo($messageBody);
-               var $redactorBox = $messageBody.children('.redactor_box').hide();
+               var $redactorBox = $messageBody.children('.redactor-box').hide();
                
                // hide message tabs
                $redactorBox.next().hide();
@@ -1010,7 +1010,7 @@ WCF.Message.QuickReply = Class.extend({
                
                // display Redactor
                $messageBody.children('.icon-spinner').remove();
-               $messageBody.children('.redactor_box').show().next().show();
+               $messageBody.children('.redactor-box').show().next().show();
                
                // display form submit
                $messageBody.next().show();