Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2017-10-03 13:19:49 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2017-11-03 13:49:56 +0300
commit4c2b2ce7df390bec4af633be53ac9bc65cc9cc9d (patch)
tree7831d051e57c7ef4e6a62806d03ec1f136239a8e /templates
parent13e7a049b76cb60bd13f056d265531353e16de42 (diff)
Add chat view to sidebar tab
The CSS was copied from the Comments app. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/index-public.php4
-rw-r--r--templates/index.php4
2 files changed, 8 insertions, 0 deletions
diff --git a/templates/index-public.php b/templates/index-public.php
index 44dc370d3..199ccf59a 100644
--- a/templates/index-public.php
+++ b/templates/index-public.php
@@ -6,16 +6,20 @@ vendor_script('select2/select2');
vendor_style('select2/select2');
style('spreed', 'style');
+style('spreed', 'comments');
script(
'spreed',
[
'vendor/backbone/backbone-min',
'vendor/backbone.radio/build/backbone.radio.min',
'vendor/backbone.marionette/lib/backbone.marionette.min',
+ 'models/chatmessage',
+ 'models/chatmessagecollection',
'models/localstoragemodel',
'models/room',
'models/roomcollection',
'views/callinfoview',
+ 'views/chatview',
'views/editabletextlabel',
'views/roomlistview',
'views/sidebarview',
diff --git a/templates/index.php b/templates/index.php
index b392cd01c..5cb01ba69 100644
--- a/templates/index.php
+++ b/templates/index.php
@@ -6,17 +6,21 @@ vendor_script('select2/select2');
vendor_style('select2/select2');
style('spreed', 'style');
+style('spreed', 'comments');
script(
'spreed',
[
'vendor/backbone/backbone-min',
'vendor/backbone.radio/build/backbone.radio.min',
'vendor/backbone.marionette/lib/backbone.marionette.min',
+ 'models/chatmessage',
+ 'models/chatmessagecollection',
'models/room',
'models/roomcollection',
'models/participant',
'models/participantcollection',
'views/callinfoview',
+ 'views/chatview',
'views/editabletextlabel',
'views/participantlistview',
'views/participantview',