diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-10-04 16:01:39 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-10-04 16:02:09 +0200 |
commit | 363ec1d3c3031fa5b6cdaa2ead51cb20bc64fd49 (patch) | |
tree | aec1e9264b3b2750642fc6e64f7ff88eff7c5f49 /apps/comments/js | |
parent | bfa870d8034ec8b16c4c92924def4c9534ddc6fb (diff) | |
download | nextcloud-server-363ec1d3c3031fa5b6cdaa2ead51cb20bc64fd49.tar.gz nextcloud-server-363ec1d3c3031fa5b6cdaa2ead51cb20bc64fd49.zip |
Remove leftover '
Followup to #11583
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/comments/js')
-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> |