var $content = $messageBody.find('.messageText');
this._cache = $content.html();
$content.empty();
+
+ // hide unrelated content
+ $content.parent().children('.jsInlineEditorHideContent').hide();
},
/**
$messageBody.children('.icon-spinner').remove();
$messageBody.find('.messageText').html(this._cache);
+ // show unrelated content
+ $messageBody.find('.jsInlineEditorHideContent').show();
+
// revert message options
this._container[this._activeElementID].find('.messageOptions').removeClass('forceHidden');
$messageBody.children('span.icon-spinner').remove();
$messageBody.find('.messageText').children().show();
+ // show unrelated content
+ $messageBody.find('.jsInlineEditorHideContent').show();
+
if (this._quoteManager) {
this._quoteManager.clearAlternativeCKEditor();
}
$('<span class="icon icon48 icon-spinner" />').appendTo($messageBody);
$messageBody.find('.messageText').children().hide();
+ // show unrelated content
+ $messageBody.find('.jsInlineEditorHideContent').show();
+
if (this._quoteManager) {
this._quoteManager.clearAlternativeCKEditor();
}
$messageBody.children('.icon-spinner').remove();
var $content = $messageBody.find('.messageText');
+ // show unrelated content
+ $content.parent().children('.jsInlineEditorHideContent').show();
+
// revert message options
this._container[this._activeElementID].find('.messageOptions').removeClass('forceHidden');