branch develop updated (cf6079fa -> 0b27ebec)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git from cf6079fa Continue fixing some aria stuff (work in progress) new 0b27ebec Continue fixing some aria stuff - End of aria-hidden="true" addition The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 0b27ebece8a2bd943de49fa1e1ce3ff7331b2321 Author: jcouteau <couteau@codelutin.com> Date: Wed Nov 14 08:11:08 2018 +0100 Continue fixing some aria stuff - End of aria-hidden="true" addition Summary of changes: pollen-ui-riot-js/src/main/web/tag/admin/LoginProviders.tag.html | 2 +- pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html | 4 ++-- pollen-ui-riot-js/src/main/web/tag/popup/ChoiceDetailModal.tag.html | 2 +- pollen-ui-riot-js/src/main/web/tag/popup/NewPassword.tag.html | 2 +- pollen-ui-riot-js/src/main/web/tag/popup/ResendValidation.tag.html | 2 +- .../src/main/web/tag/voteCountingType/BordaConfig.tag.html | 4 ++-- pollen-ui-riot-js/src/main/web/tag/voterList/VoterListCard.tag.html | 6 +++--- .../src/main/web/tag/voterList/VoterListMemberCard.tag.html | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
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 0b27ebece8a2bd943de49fa1e1ce3ff7331b2321 Author: jcouteau <couteau@codelutin.com> Date: Wed Nov 14 08:11:08 2018 +0100 Continue fixing some aria stuff - End of aria-hidden="true" addition --- pollen-ui-riot-js/src/main/web/tag/admin/LoginProviders.tag.html | 2 +- pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html | 4 ++-- pollen-ui-riot-js/src/main/web/tag/popup/ChoiceDetailModal.tag.html | 2 +- pollen-ui-riot-js/src/main/web/tag/popup/NewPassword.tag.html | 2 +- pollen-ui-riot-js/src/main/web/tag/popup/ResendValidation.tag.html | 2 +- .../src/main/web/tag/voteCountingType/BordaConfig.tag.html | 4 ++-- pollen-ui-riot-js/src/main/web/tag/voterList/VoterListCard.tag.html | 6 +++--- .../src/main/web/tag/voterList/VoterListMemberCard.tag.html | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/admin/LoginProviders.tag.html b/pollen-ui-riot-js/src/main/web/tag/admin/LoginProviders.tag.html index 19ce88de..788cba51 100644 --- a/pollen-ui-riot-js/src/main/web/tag/admin/LoginProviders.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/admin/LoginProviders.tag.html @@ -49,7 +49,7 @@ import "../components/HumanInput.tag.html"; <td><input class="c-field" type="text" ref="permissions{index}" value="{loginprovider.permissions}" disabled="{editingRow != index}"/></td> <td><input type="checkbox" ref="active{index}" checked="{loginprovider.active}" disabled="{editingRow != index}"/></td> <td if="{editingRow != index}"> - <button class="c-button c-button--info" onclick="{editLoginProvider(index)}" disabled="{editingRow != null}"><i class="fa fa-edit"> aria-hidden="true"</i></button> + <button class="c-button c-button--info" onclick="{editLoginProvider(index)}" disabled="{editingRow != null}"><i class="fa fa-edit" aria-hidden="true"> </i></button> <button class="c-button c-button--error" onclick="{deleteLoginProvider(index)}" disabled="{editingRow != null}"><i class="fa fa-trash" aria-hidden="true"></i></button> </td> <td if="{editingRow == index}"> 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 4b62461e..35836c30 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 @@ -26,11 +26,11 @@ <button class="c-button c-button--info {c-button--ghost-info: !voteClickAndDrop, c-button--info: voteClickAndDrop}" onclick={voteClickAndDropChange(true)} title={_t.voteByClickAndDrop} - type="button"><i class="fa fa-list-ol"></i></button> + type="button"><i class="fa fa-list-ol" aria-hidden="true"></i></button> <button class="c-button c-button--info {c-button--ghost-info: voteClickAndDrop, c-button--info: !voteClickAndDrop}" onclick={voteClickAndDropChange(false)} title={_t.voteByInput} - type="button"><i class="fa fa-i-cursor"></i></button> + type="button"><i class="fa fa-i-cursor" aria-hidden="true"></i></button> </span> <EditVote ref="editVote" diff --git a/pollen-ui-riot-js/src/main/web/tag/popup/ChoiceDetailModal.tag.html b/pollen-ui-riot-js/src/main/web/tag/popup/ChoiceDetailModal.tag.html index a5a58728..9efa2f41 100644 --- a/pollen-ui-riot-js/src/main/web/tag/popup/ChoiceDetailModal.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/popup/ChoiceDetailModal.tag.html @@ -31,7 +31,7 @@ import "../components/MultiLineLabel.tag.html"; if={!parent.isImage()} href="{parent.session.configuration.endPoint}/v1/resources/{parent.choice.choiceValue}/download" target="_blank"> - <i class="fa fa-download"></i> + <i class="fa fa-download" aria-hidden="true"></i> {parent._t.download} </a> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/popup/NewPassword.tag.html b/pollen-ui-riot-js/src/main/web/tag/popup/NewPassword.tag.html index 6eaa45a6..71374822 100644 --- a/pollen-ui-riot-js/src/main/web/tag/popup/NewPassword.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/popup/NewPassword.tag.html @@ -33,7 +33,7 @@ </div> <div if="{parent.sent}" class="c-hint--static c-hint--success"> - <i class="fa fa-envelope"></i> {parent._t.sent} + <i class="fa fa-envelope" aria-hidden="true"></i> {parent._t.sent} </div> </Modal> diff --git a/pollen-ui-riot-js/src/main/web/tag/popup/ResendValidation.tag.html b/pollen-ui-riot-js/src/main/web/tag/popup/ResendValidation.tag.html index ab312643..d038c7b9 100644 --- a/pollen-ui-riot-js/src/main/web/tag/popup/ResendValidation.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/popup/ResendValidation.tag.html @@ -33,7 +33,7 @@ </div> <div if="{parent.sent}" class="c-hint--static c-hint--success"> - <i class="fa fa-envelope"></i> {parent._t.sent} + <i class="fa fa-envelope" aria-hidden="true"></i> {parent._t.sent} </div> </Modal> diff --git a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/BordaConfig.tag.html b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/BordaConfig.tag.html index 55efb863..7fb14de0 100644 --- a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/BordaConfig.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/BordaConfig.tag.html @@ -44,7 +44,7 @@ import "./MaxChoicesNumberConfig.tag.html"; <div class="c-input-group c-input-group--stacked c-field--label"> <div class="o-field ranks" each={value, index in opts.config.pointsByRank || []}> - <i class="rank">{parent._t.rank} {index + 1} :</i> + <em class="rank">{parent._t.rank} {index + 1} :</em> <input name="points-{index}" tabindex="1" id="points-{index}" @@ -56,7 +56,7 @@ import "./MaxChoicesNumberConfig.tag.html"; max="{index === 0 ? undefined : parent.opts.config.pointsByRank[index - 1]}" onChange={parent.pointsChange(index)} type="number"> - <i class="points">{parent._t.points}</i> + <em class="points">{parent._t.points}</em> </div> </div> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/voterList/VoterListCard.tag.html b/pollen-ui-riot-js/src/main/web/tag/voterList/VoterListCard.tag.html index 6b43c5d5..70e7e41e 100644 --- a/pollen-ui-riot-js/src/main/web/tag/voterList/VoterListCard.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/voterList/VoterListCard.tag.html @@ -33,15 +33,15 @@ import "./VoterListEditModal.tag.html"; if={!parent.opts.form.creation && !parent.opts.form.model.closed && !parent.opts.voterList.temp} title={parent._t.resendInvitation} onclick={parent.resendInvitation}> - <i class="fa fa-paper-plane"></i> + <i class="fa fa-paper-plane" aria-hidden="true"></i> </a> </yield> <yield to="detail"> <div> - {parent.opts.voterList.countSubLists} <i class="fa fa-users"></i> + {parent.opts.voterList.countSubLists} <i class="fa fa-users" aria-hidden="true"></i> </div> <div> - {parent.opts.voterList.countMembers} <i class="fa fa-user"></i> + {parent.opts.voterList.countMembers} <i class="fa fa-user" aria-hidden="true"></i> </div> </yield> </Card> diff --git a/pollen-ui-riot-js/src/main/web/tag/voterList/VoterListMemberCard.tag.html b/pollen-ui-riot-js/src/main/web/tag/voterList/VoterListMemberCard.tag.html index ae286095..0596d013 100644 --- a/pollen-ui-riot-js/src/main/web/tag/voterList/VoterListMemberCard.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/voterList/VoterListMemberCard.tag.html @@ -32,7 +32,7 @@ import "./VoterListMemberEditModal.tag.html"; if={!parent.opts.form.creation && !parent.opts.form.model.closed && parent.opts.member.id && !parent.opts.member.voting} title={parent._t.resendInvitation} onclick={parent.resendInvitation}> - <i class="fa fa-paper-plane"></i> + <i class="fa fa-paper-plane" aria-hidden="true"></i> </a> </yield> <yield to="detail"> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm