[#1716] use ui-router to collapse challenge participants (WIP)

This commit is contained in:
Tyler Renelle
2013-11-01 23:11:28 -07:00
parent 43eafb3cb7
commit 8ae75e09c5
7 changed files with 75 additions and 35 deletions

View File

@@ -140,6 +140,14 @@ habitrpg.controller("ChallengesCtrl", ['$scope', 'User', 'Challenges', 'Notifica
}
}
$scope.toggleMember = function(cid, uid){
if($state.includes('options.social.challenges.detail.member', {cid: cid, uid: uid})){
$state.go('options.social.challenges.detail')
}else{
$state.go('options.social.challenges.detail.member', {cid: cid, uid: uid});
}
}
//------------------------------------------------------------
// Tasks
//------------------------------------------------------------