Converted ChannelInfoModal to React-Bootstrap

Этот коммит содержится в:
hmhealey
2015-11-10 13:23:10 -05:00
родитель 590e7f903f
Коммит 66638c4f70
4 изменённых файлов: 53 добавлений и 89 удалений

Просмотреть файл

@@ -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 = (
<li role='presentation'>
<a
<ToggleModalButton
role='menuitem'
data-toggle='modal'
data-target='#channel_info'
data-channelid={channel.id}
href='#'
dialogType={ChannelInfoModal}
dialogProps={{channel}}
>
{'View Info'}
</a>
</ToggleModalButton>
</li>
);