Skip to content

Commit

Permalink
Merge pull request #621 from greezybacon/issue/393
Browse files Browse the repository at this point in the history
Fix canned append in non-HTML mode

Reviewed-By: Peter Rotich <peter@osticket.com>
  • Loading branch information
protich committed Feb 27, 2014
2 parents d67c8dc + 2dce37a commit c8ff6c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scp/js/scp.js
Expand Up @@ -196,7 +196,7 @@ $(document).ready(function(){
if (redactor)
redactor.insertHtml(canned.response);
else
box.val(canned.response);
box.val(box.val() + canned.response);
}
else {
if (redactor)
Expand Down

0 comments on commit c8ff6c1

Please sign in to comment.