diff options
author | Joas Schilling <coding@schilljs.com> | 2016-08-18 11:44:03 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-08-18 11:44:03 +0200 |
commit | 9f58e62925e7da7f75be859c070f6906dfb271d2 (patch) | |
tree | 5120f2e1d30765b296edc18b3eb51ce3d9d651a4 /apps/comments/js/commentstabview.js | |
parent | 5580a77bd703877541687b72d7ab4ec50b2b0c7d (diff) | |
download | nextcloud-server-9f58e62925e7da7f75be859c070f6906dfb271d2.tar.gz nextcloud-server-9f58e62925e7da7f75be859c070f6906dfb271d2.zip |
Fix double ending quotes
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 565f6a99296..9451e828f91 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}}" />' + |