Skip to content
This repository has been archived by the owner on Oct 31, 2019. It is now read-only.

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Skhmt committed Feb 27, 2016
1 parent a9bb1ac commit b81260a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/js/commands-static.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,7 @@ function cmdHighlight( params, from ) {
output += highlight;
var text = params.join(" ");
if ( text.length > 1 ) {
output += " ( ";
for ( var i = 1; i < text.length; i++ ){
output += text[i] + " ";
}
output += ")";
output += ` ( ${text} )`;
}
output += "\r\n";

Expand Down

0 comments on commit b81260a

Please sign in to comment.