Update UI of share modal

This commit is contained in:
Shane Kilkelly 2016-08-03 11:55:24 +01:00
parent 6ea690225f
commit 8cb93511df
2 changed files with 6 additions and 1 deletions

View file

@ -45,7 +45,9 @@ script(type='text/ng-template', id='shareProjectModalTemplate')
i.fa.fa-times
.row.project-invite(ng-repeat="invite in project.invites")
.col-xs-8 {{ invite.email }} 
span.label.label-primary #{translate("pending")}
div.small
| #{translate("invite_not_accepted")}. 
a(href="#", ng-click="resendInvite(invite)") #{translate("resend")}
.col-xs-3.text-left
// todo: get invite privileges
span(ng-show="invite.privileges == 'readAndWrite'") #{translate("can_edit")}

View file

@ -135,6 +135,9 @@ define [
$scope.state.inflight = false
$scope.state.error = "Sorry, something went wrong :("
$scope.resendInvite = (invite) ->
console.log ">> resend"
$scope.openMakePublicModal = () ->
$modal.open {
templateUrl: "makePublicModalTemplate"