branch develop updated (34e324fb -> ec3e92d4)
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 34e324fb correction de la traduction anglaise new ec3e92d4 correction eslint du JS 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 ec3e92d4835ca5e1a5ff1afd0c62bfbab974e287 Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Wed May 30 15:47:47 2018 +0200 correction eslint du JS Summary of changes: pollen-ui-riot-js/src/main/web/js/AuthService.js | 4 ++-- pollen-ui-riot-js/src/main/web/js/VoterListService.js | 3 ++- pollen-ui-riot-js/src/main/web/tag/components/Checkbox.tag.html | 2 +- pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html | 4 ++-- 4 files changed, 7 insertions(+), 6 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 ec3e92d4835ca5e1a5ff1afd0c62bfbab974e287 Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Wed May 30 15:47:47 2018 +0200 correction eslint du JS --- pollen-ui-riot-js/src/main/web/js/AuthService.js | 4 ++-- pollen-ui-riot-js/src/main/web/js/VoterListService.js | 3 ++- pollen-ui-riot-js/src/main/web/tag/components/Checkbox.tag.html | 2 +- pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pollen-ui-riot-js/src/main/web/js/AuthService.js b/pollen-ui-riot-js/src/main/web/js/AuthService.js index c256164a..bdcc6387 100644 --- a/pollen-ui-riot-js/src/main/web/js/AuthService.js +++ b/pollen-ui-riot-js/src/main/web/js/AuthService.js @@ -93,8 +93,8 @@ class AuthService extends FetchService { signInProvider(query) { return this.post( - "/v1/login/" + query.loginProvider, - JSON.stringify(query)); + "/v1/login/" + query.loginProvider, + JSON.stringify(query)); } getAllLoginProviders() { diff --git a/pollen-ui-riot-js/src/main/web/js/VoterListService.js b/pollen-ui-riot-js/src/main/web/js/VoterListService.js index 3c9ce377..5890748f 100644 --- a/pollen-ui-riot-js/src/main/web/js/VoterListService.js +++ b/pollen-ui-riot-js/src/main/web/js/VoterListService.js @@ -300,7 +300,8 @@ class VoterListService extends FetchService { listsToDelete: this.voterListsToDelete, membersToDelete: this.voterListMembersToDelete }, - {permission: this.pollForm.model.permission}).then(() => { + {permission: this.pollForm.model.permission}) + .then(() => { this.voterListsToDelete = []; this.voterListMembersToDelete = []; }); diff --git a/pollen-ui-riot-js/src/main/web/tag/components/Checkbox.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/Checkbox.tag.html index 7b5e49b0..440f40e6 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/Checkbox.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/Checkbox.tag.html @@ -51,7 +51,7 @@ } }; - this.ontogglecheckbox = e => { + this.ontogglecheckbox = () => { this.checked = !this.checked; if (this.opts.ontogglecheckbox) { this.opts.ontogglecheckbox(); diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html index cee05efa..31889002 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html @@ -331,9 +331,9 @@ } return vote; - } + }; - this.saveVote = e => { + this.saveVote = (e) => { e.preventDefault(); e.stopPropagation(); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm