diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-30 14:57:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-30 14:57:57 +0100 |
commit | b28a0c10bfb032e0a3127169be70c7a1ee52735c (patch) | |
tree | 733f0d80c087db920ed685a44700294ece792a83 /apps/files_external/js/templates.js | |
parent | c1698948b8cf47924978578335a5a4e8c767682c (diff) | |
parent | 9645e545b3a1669e1044acc86b193e3c8ab335b1 (diff) | |
download | nextcloud-server-b28a0c10bfb032e0a3127169be70c7a1ee52735c.tar.gz nextcloud-server-b28a0c10bfb032e0a3127169be70c7a1ee52735c.zip |
Merge pull request #11946 from nextcloud/bugfix/11945/fix-js-namespace-of-files-external
Fix JS namespace of files_external app
Diffstat (limited to 'apps/files_external/js/templates.js')
-rw-r--r-- | apps/files_external/js/templates.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/js/templates.js b/apps/files_external/js/templates.js index 067b3f5f5d7..cf1522334c5 100644 --- a/apps/files_external/js/templates.js +++ b/apps/files_external/js/templates.js @@ -1,5 +1,5 @@ (function() { - var template = Handlebars.template, templates = OCA.External.Templates = OCA.External.Templates || {}; + var template = Handlebars.template, templates = OCA.Files_External.Templates = OCA.Files_External.Templates || {}; templates['credentialsDialog'] = template({"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data) { var helper, alias1=depth0 != null ? depth0 : (container.nullContext || {}), alias2=helpers.helperMissing, alias3="function", alias4=container.escapeExpression; |