diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-10-01 20:08:49 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-10-04 09:53:44 +0200 |
commit | b10cddebe583dff888d844c550f607d52b496d49 (patch) | |
tree | 376dda8f9382a071f30026b44b169a9c52b977e6 /apps/files_sharing | |
parent | fca9987a6ad890d3b3e7854fae157f51fac54ed8 (diff) | |
download | nextcloud-server-b10cddebe583dff888d844c550f607d52b496d49.tar.gz nextcloud-server-b10cddebe583dff888d844c550f607d52b496d49.zip |
Move sharetabview to compiled handlebars
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/js/sharetabview.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/files_sharing/js/sharetabview.js b/apps/files_sharing/js/sharetabview.js index 7bb1f1229d0..fc7f2c5f045 100644 --- a/apps/files_sharing/js/sharetabview.js +++ b/apps/files_sharing/js/sharetabview.js @@ -25,10 +25,7 @@ className: 'tab shareTabView', template: function(params) { - if (!this._template) { - this._template = Handlebars.compile(TEMPLATE); - } - return this._template(params); + return TEMPLATE; }, getLabel: function() { |