summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2018-12-11 19:53:34 +0100
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2018-12-11 20:02:50 +0100
commit8942baf9f366b2d8acaa9d8d541d54782181cdcf (patch)
tree146b88ddfb07970f8ccc0ce3b408fa0669a56b87 /templates
parentcb03c7e637797571f54f074817050a560677ee5b (diff)
Add full Handlebars library
In Nextcloud 16 the Handlebars library shipped in the server is no longer the full Handlebars library, but a trimmed down version that does not support compiling Handlebars templates at runtime. Currently Talk still needs to compile Handlebars templates at runtime, so for the time being the full Handlebars library that was included before in the server is now included in Talk. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/index-public.php1
-rw-r--r--templates/index.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/templates/index-public.php b/templates/index-public.php
index 699681ce2..96e1cd212 100644
--- a/templates/index-public.php
+++ b/templates/index-public.php
@@ -15,6 +15,7 @@ script(
'vendor/backbone/backbone-min',
'vendor/backbone.radio/build/backbone.radio.min',
'vendor/backbone.marionette/lib/backbone.marionette.min',
+ 'vendor/handlebars/handlebars.min',
'vendor/jshashes/hashes.min',
'vendor/Caret.js/dist/jquery.caret.min',
'vendor/At.js/dist/js/jquery.atwho.min',
diff --git a/templates/index.php b/templates/index.php
index 3d2c1206a..e42367800 100644
--- a/templates/index.php
+++ b/templates/index.php
@@ -15,6 +15,7 @@ script(
'vendor/backbone/backbone-min',
'vendor/backbone.radio/build/backbone.radio.min',
'vendor/backbone.marionette/lib/backbone.marionette.min',
+ 'vendor/handlebars/handlebars.min',
'vendor/jshashes/hashes.min',
'vendor/Caret.js/dist/jquery.caret.min',
'vendor/At.js/dist/js/jquery.atwho.min',