This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit aa1b84a548e61ac5715a885e833d007e397c312d Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Wed Sep 20 11:23:32 2017 +0200 Correction affichage votes anoymes --- pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html index ff7fb647..75c944bf 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html @@ -156,8 +156,8 @@ require("../components/LazyLoad.tag.html"); <div class="name separator-left"> <div class="voter-name" onmouseenter="{parent.parent.showTooltip(element)}" onclick="{parent.parent.showTooltip(vote)}" onmouseleave="{parent.parent.hideTooltip}"> <i class="fa fa-user-circle c-icon"></i> - <span if="{!element.anonymous}">{element.voterName}</span> - <span if="{element.anonymous}" class="anonymous-voter">{parent.__.anonymousVoter}</span> + <span if="{!element.anonymous || element.permission}">{element.voterName}</span> + <span if="{element.anonymous && !element.permission}" class="anonymous-voter">{parent.parent.__.anonymousVoter}</span> </div> <button type="button" class="c-button c-button--rounded u-xsmall c-button--brand" @@ -264,7 +264,6 @@ require("../components/LazyLoad.tag.html"); this.pollTypeCheckbox = poll.voteCountingTypeValue && poll.voteCountingTypeValue.renderType === "checkbox"; this.choiceToAdd = this.poll.initChoice(this.choiceToAdd); this.onVoteChanged(); - console.log(poll); this.refresh(); this.update(); }; -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.