summaryrefslogtreecommitdiffstats
path: root/web/templates/channel.html
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-03-14 10:23:51 -0700
committer=Corey Hulen <corey@hulen.com>2016-03-14 10:23:51 -0700
commitea3f25924ea64a2dd1e73624c0d30824e1efb240 (patch)
treea4a2b2bdc37bd675fb89837713995ad44a27427b /web/templates/channel.html
parent397ebec88c2db3569efd77238bf877e976492d34 (diff)
parentbf7ae0711743926cfbb031675cc3320d7a942465 (diff)
downloadchat-ea3f25924ea64a2dd1e73624c0d30824e1efb240.tar.gz
chat-ea3f25924ea64a2dd1e73624c0d30824e1efb240.tar.bz2
chat-ea3f25924ea64a2dd1e73624c0d30824e1efb240.zip
Merge branch 'master' into PLT-2115
Diffstat (limited to 'web/templates/channel.html')
-rw-r--r--web/templates/channel.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/web/templates/channel.html b/web/templates/channel.html
deleted file mode 100644
index 94d79a022..000000000
--- a/web/templates/channel.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
-{{define "channel"}}
-<!DOCTYPE html>
-<html>
-{{template "head" . }}
-<body>
- <div id="channel_view" class='channel-view'></div>
-<script>
- window.setup_channel_page({{ .Props }}, {{ .Team }}, {{ .Channel }});
- $('body').tooltip( {selector: '[data-toggle=tooltip]'} );
- var modals = $('.modal-body').not('.edit-modal-body');
- if($(window).height() > 1200){
- modals.css('max-height', 1000);
- } else {
- modals.css('max-height', $(window).height() - 200);
- }
- modals.perfectScrollbar();
-</script>
-</body>
-</html>
-{{end}}