FIX: Hide invite button on mobile

This commit is contained in:
Robin Ward 2016-05-06 17:20:43 -04:00
parent aa5ea719ee
commit 9741584ae8
No known key found for this signature in database
GPG Key ID: 0E091E2B4ED1B83D

View File

@ -27,7 +27,7 @@ export default ContainerView.extend({
}
}
if (this.get('topic.details.can_invite_to')) {
if (!mobileView && this.get('topic.details.can_invite_to')) {
this.attachViewClass('invite-reply-button');
}