logic cleanup

This commit is contained in:
El RIDO 2015-09-16 20:49:28 +02:00
parent 0e53d1ee86
commit 61903665df

View File

@ -548,7 +548,9 @@ $(function() {
this.clearText.html( this.clearText.html(
converter.makeHtml(this.clearText.html()) converter.makeHtml(this.clearText.html())
); );
this.clearText.removeClass('hidden');
} }
this.prettyMessage.addClass('hidden');
break; break;
case 'syntaxhighlighting': case 'syntaxhighlighting':
if (typeof prettyPrint == 'function') prettyPrint(); if (typeof prettyPrint == 'function') prettyPrint();
@ -556,16 +558,8 @@ $(function() {
// Convert URLs to clickable links. // Convert URLs to clickable links.
helper.urls2links(this.clearText); helper.urls2links(this.clearText);
helper.urls2links(this.prettyPrint); helper.urls2links(this.prettyPrint);
} this.clearText.addClass('hidden');
if (format == 'markdown') this.prettyMessage.removeClass('hidden');
{
this.clearText.removeClass('hidden');
this.prettyMessage.addClass('hidden');
}
else
{
this.clearText.addClass('hidden');
this.prettyMessage.removeClass('hidden');
} }
if (format == 'plaintext') this.prettyPrint.removeClass('prettyprint'); if (format == 'plaintext') this.prettyPrint.removeClass('prettyprint');
}, },