fix(groups): Show specific invite modal

This commit is contained in:
Sabe Jones
2015-08-28 16:48:39 -04:00
parent 15a6929b44
commit 5e8894a0a6

View File

@@ -103,7 +103,10 @@ habitrpg.controller("GroupsCtrl", ['$scope', '$rootScope', 'Shared', 'Groups', '
};
$scope.openInviteModal = function(group){
$rootScope.openModal('invite-guild', {
if (group.type !== 'party' && group.type !== 'guild') {
return console.log('Invalid group type.')
}
$rootScope.openModal('invite-' + group.type, {
controller:'InviteToGroupCtrl',
resolve: {
injectedGroup: function(){