summaryrefslogtreecommitdiffstats
path: root/web/react/pages/channel.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-08-13 12:07:32 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-08-13 12:07:32 -0700
commit912ca8e8dd2f69d8a15429f3ab4bbb7ac178ab8a (patch)
tree0bf0eaa86f20b6a319fec890506808445160c1c6 /web/react/pages/channel.jsx
parentafe028ae3a63ff341cbaf89b7841e977fb0061fd (diff)
downloadchat-912ca8e8dd2f69d8a15429f3ab4bbb7ac178ab8a.tar.gz
chat-912ca8e8dd2f69d8a15429f3ab4bbb7ac178ab8a.tar.bz2
chat-912ca8e8dd2f69d8a15429f3ab4bbb7ac178ab8a.zip
Changed location of file upload overlay
Diffstat (limited to 'web/react/pages/channel.jsx')
-rw-r--r--web/react/pages/channel.jsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/web/react/pages/channel.jsx b/web/react/pages/channel.jsx
index 90d90b29f..922e61d1a 100644
--- a/web/react/pages/channel.jsx
+++ b/web/react/pages/channel.jsx
@@ -35,6 +35,7 @@ var ChannelInfoModal = require('../components/channel_info_modal.jsx');
var AccessHistoryModal = require('../components/access_history_modal.jsx');
var ActivityLogModal = require('../components/activity_log_modal.jsx');
var RemovedFromChannelModal = require('../components/removed_from_channel_modal.jsx')
+var FileUploadOverlay = require('../components/file_upload_overlay.jsx');
var Constants = require('../utils/constants.jsx');
@@ -223,4 +224,9 @@ global.window.setup_channel_page = function(team_name, team_type, team_id, chann
document.getElementById('removed_from_channel_modal')
);
+ React.render(
+ <FileUploadOverlay />,
+ document.getElementById('file_upload_overlay')
+ );
+
};