From 66638c4f70adb3fa2777af03c6175347b8dbee6b Mon Sep 17 00:00:00 2001 From: hmhealey Date: Tue, 10 Nov 2015 13:23:10 -0500 Subject: Converted ChannelInfoModal to React-Bootstrap --- web/react/components/navbar.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'web/react/components/navbar.jsx') diff --git a/web/react/components/navbar.jsx b/web/react/components/navbar.jsx index 7ad1f9305..d587c1915 100644 --- a/web/react/components/navbar.jsx +++ b/web/react/components/navbar.jsx @@ -5,7 +5,9 @@ const EditChannelPurposeModal = require('./edit_channel_purpose_modal.jsx'); const MessageWrapper = require('./message_wrapper.jsx'); const NotifyCounts = require('./notify_counts.jsx'); const ChannelMembersModal = require('./channel_members_modal.jsx'); +const ChannelInfoModal = require('./channel_info_modal.jsx'); const ChannelInviteModal = require('./channel_invite_modal.jsx'); +const ToggleModalButton = require('./toggle_modal_button.jsx'); const UserStore = require('../stores/user_store.jsx'); const ChannelStore = require('../stores/channel_store.jsx'); @@ -104,15 +106,13 @@ export default class Navbar extends React.Component { if (channel) { var viewInfoOption = (
  • - {'View Info'} - +
  • ); -- cgit v1.2.3-1-g7c22 From 69e378c556e817ce494af8511220389407dbed89 Mon Sep 17 00:00:00 2001 From: hmhealey Date: Tue, 10 Nov 2015 15:45:19 -0500 Subject: Converted ChannelNotificationsModal to React-Bootstrap --- web/react/components/navbar.jsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'web/react/components/navbar.jsx') diff --git a/web/react/components/navbar.jsx b/web/react/components/navbar.jsx index d587c1915..85be96a92 100644 --- a/web/react/components/navbar.jsx +++ b/web/react/components/navbar.jsx @@ -7,6 +7,7 @@ const NotifyCounts = require('./notify_counts.jsx'); const ChannelMembersModal = require('./channel_members_modal.jsx'); const ChannelInfoModal = require('./channel_info_modal.jsx'); const ChannelInviteModal = require('./channel_invite_modal.jsx'); +const ChannelNotificationsModal = require('./channel_notifications_modal.jsx'); const ToggleModalButton = require('./toggle_modal_button.jsx'); const UserStore = require('../stores/user_store.jsx'); @@ -229,16 +230,13 @@ export default class Navbar extends React.Component { if (!isDirect) { notificationPreferenceOption = (
  • - - {'Notification Preferences'} - + {'Notification Preferences'} +
  • ); } -- cgit v1.2.3-1-g7c22 From 3d572be2f3bb0d4b6b2eb83b69a209234f807231 Mon Sep 17 00:00:00 2001 From: hmhealey Date: Tue, 17 Nov 2015 11:10:33 -0500 Subject: Converted DeleteChannelModal to React-Bootstrap --- web/react/components/navbar.jsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'web/react/components/navbar.jsx') diff --git a/web/react/components/navbar.jsx b/web/react/components/navbar.jsx index 85be96a92..1fcfabccd 100644 --- a/web/react/components/navbar.jsx +++ b/web/react/components/navbar.jsx @@ -8,6 +8,7 @@ const ChannelMembersModal = require('./channel_members_modal.jsx'); const ChannelInfoModal = require('./channel_info_modal.jsx'); const ChannelInviteModal = require('./channel_invite_modal.jsx'); const ChannelNotificationsModal = require('./channel_notifications_modal.jsx'); +const DeleteChannelModal = require('./delete_channel_modal.jsx'); const ToggleModalButton = require('./toggle_modal_button.jsx'); const UserStore = require('../stores/user_store.jsx'); @@ -195,16 +196,13 @@ export default class Navbar extends React.Component { deleteChannelOption = (
  • - {'Delete Channel...'} - +
  • ); } -- cgit v1.2.3-1-g7c22