diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-10-04 19:54:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 19:54:16 +0200 |
commit | fbe62e198594fcb130884e7e98f669ff4516b90b (patch) | |
tree | 5f958a58626b547903d204895ba0fb6feab967f7 /apps/comments | |
parent | e0ed64366c0a6ddb68ebbc9ff3639257aab74d7e (diff) | |
parent | 363ec1d3c3031fa5b6cdaa2ead51cb20bc64fd49 (diff) | |
download | nextcloud-server-fbe62e198594fcb130884e7e98f669ff4516b90b.tar.gz nextcloud-server-fbe62e198594fcb130884e7e98f669ff4516b90b.zip |
Merge pull request #11615 from nextcloud/followup/11583
Remove leftover '
Diffstat (limited to 'apps/comments')
-rw-r--r-- | apps/comments/js/templates.js | 4 | ||||
-rw-r--r-- | apps/comments/js/templates/edit_comment.handlebars | 4 | ||||
-rw-r--r-- | apps/comments/js/templates/view.handlebars | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/apps/comments/js/templates.js b/apps/comments/js/templates.js index 90ded7fe4e5..a5706baa27e 100644 --- a/apps/comments/js/templates.js +++ b/apps/comments/js/templates.js @@ -71,7 +71,7 @@ templates['edit_comment'] = template({"1":function(container,depth0,helpers,part + alias4(((helper = (helper = helpers.message || (depth0 != null ? depth0.message : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"message","hash":{},"data":data}) : helper))) + "</div>\n <input class=\"submit icon-confirm has-tooltip\" type=\"submit\" value=\"\" title=\"" + alias4(((helper = (helper = helpers.submitText || (depth0 != null ? depth0.submitText : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"submitText","hash":{},"data":data}) : helper))) - + "\"/>\n <div class=\"submitLoading icon-loading-small hidden\"></div>'+\n </form>\n'</" + + "\"/>\n <div class=\"submitLoading icon-loading-small hidden\"></div>\n </form>\n</" + alias4(((helper = (helper = helpers.tag || (depth0 != null ? depth0.tag : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"tag","hash":{},"data":data}) : helper))) + ">\n"; },"useData":true}); @@ -82,6 +82,6 @@ templates['view'] = template({"compiler":[7,">= 4.0.0"],"main":function(containe + alias4(((helper = (helper = helpers.emptyResultLabel || (depth0 != null ? depth0.emptyResultLabel : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"emptyResultLabel","hash":{},"data":data}) : helper))) + "</p></div>\n<input type=\"button\" class=\"showMore hidden\" value=\"" + alias4(((helper = (helper = helpers.moreLabel || (depth0 != null ? depth0.moreLabel : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"moreLabel","hash":{},"data":data}) : helper))) - + "\" name=\"show-more\" id=\"show-more\" />\n<div class=\"loading hidden\" style=\"height: 50px\"></div>'\n"; + + "\" name=\"show-more\" id=\"show-more\" />\n<div class=\"loading hidden\" style=\"height: 50px\"></div>\n"; },"useData":true}); })();
\ No newline at end of file diff --git a/apps/comments/js/templates/edit_comment.handlebars b/apps/comments/js/templates/edit_comment.handlebars index 05f89ec598a..0a909ebe6aa 100644 --- a/apps/comments/js/templates/edit_comment.handlebars +++ b/apps/comments/js/templates/edit_comment.handlebars @@ -11,6 +11,6 @@ <form class="newCommentForm"> <div contentEditable="true" class="message" data-placeholder="{{newMessagePlaceholder}}">{{message}}</div> <input class="submit icon-confirm has-tooltip" type="submit" value="" title="{{submitText}}"/> - <div class="submitLoading icon-loading-small hidden"></div>'+ + <div class="submitLoading icon-loading-small hidden"></div> </form> -'</{{tag}}> +</{{tag}}> diff --git a/apps/comments/js/templates/view.handlebars b/apps/comments/js/templates/view.handlebars index 5f52a42861d..c63faa386b3 100644 --- a/apps/comments/js/templates/view.handlebars +++ b/apps/comments/js/templates/view.handlebars @@ -3,4 +3,4 @@ <div class="emptycontent hidden"><div class="icon-comment"></div> <p>{{emptyResultLabel}}</p></div> <input type="button" class="showMore hidden" value="{{moreLabel}}" name="show-more" id="show-more" /> -<div class="loading hidden" style="height: 50px"></div>' +<div class="loading hidden" style="height: 50px"></div> |