diff options
author | Joas Schilling <coding@schilljs.com> | 2016-08-29 14:18:34 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-08-29 14:18:34 +0200 |
commit | 28792a010c69e17b9fa20c95641d474822e64091 (patch) | |
tree | 5f2e6f836748159782c5bc8708325749c4f0f2c4 /apps/comments/js/commentstabview.js | |
parent | 3647fbe7cd86e743b059889d69b03fcf8207780f (diff) | |
download | nextcloud-server-28792a010c69e17b9fa20c95641d474822e64091.tar.gz nextcloud-server-28792a010c69e17b9fa20c95641d474822e64091.zip |
Prevent parse error on editing an HTML comment
Diffstat (limited to 'apps/comments/js/commentstabview.js')
-rw-r--r-- | apps/comments/js/commentstabview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/js/commentstabview.js b/apps/comments/js/commentstabview.js index 9451e828f91..eae18c1d485 100644 --- a/apps/comments/js/commentstabview.js +++ b/apps/comments/js/commentstabview.js @@ -32,7 +32,7 @@ '{{/if}}' + ' </div>' + ' <form class="newCommentForm">' + - ' <input type="text" class="message" placeholder="{{newMessagePlaceholder}}" value="{{{message}}}" />' + + ' <input type="text" class="message" placeholder="{{newMessagePlaceholder}}" value="{{message}}" />' + ' <input class="submit icon-confirm" type="submit" value="" />' + '{{#if isEditMode}}' + ' <input class="cancel pull-right" type="button" value="{{cancelText}}" />' + |