branch feature/253-tuiles updated (de566ab4 -> 8f98ec8c)
This is an automated email from the git hooks/post-receive script. New change to branch feature/253-tuiles in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git from de566ab4 Ajout de configuration storybook new 8f98ec8c Fix build : - No snapshot in java - Lint in 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 8f98ec8c54542525e3652ae93796111899322ad7 Author: jcouteau <couteau@codelutin.com> Date: Fri Jan 17 09:53:23 2020 +0100 Fix build : - No snapshot in java - Lint in js Summary of changes: .../src/main/web/tag/components/Popover.tag.html | 13 ++++++------- .../src/main/web/tag/poll/PollCardReboot.tag.html | 18 +++++++++--------- pom.xml | 2 +- 3 files changed, 16 insertions(+), 17 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 feature/253-tuiles in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 8f98ec8c54542525e3652ae93796111899322ad7 Author: jcouteau <couteau@codelutin.com> Date: Fri Jan 17 09:53:23 2020 +0100 Fix build : - No snapshot in java - Lint in js --- .../src/main/web/tag/components/Popover.tag.html | 13 ++++++------- .../src/main/web/tag/poll/PollCardReboot.tag.html | 18 +++++++++--------- pom.xml | 2 +- 3 files changed, 16 insertions(+), 17 deletions(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/components/Popover.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/Popover.tag.html index 0f905dc0..ae326b2d 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/Popover.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/Popover.tag.html @@ -9,15 +9,14 @@ <script type="es6"> this.showPopover = () => { - if (this.refs.content.style.visibility==='hidden' || !this.refs.content.style.visibility ) { - this.refs.content.style.visibility='visible'; - this.refs.content.style.opacity='1'; + if (this.refs.content.style.visibility === "hidden" || !this.refs.content.style.visibility) { + this.refs.content.style.visibility = "visible"; + this.refs.content.style.opacity = "1"; } else { - this.refs.content.style.visibility='hidden'; - this.refs.content.style.opacity='0'; - + this.refs.content.style.visibility = "hidden"; + this.refs.content.style.opacity = "0"; } - } + }; </script> <style> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/PollCardReboot.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/PollCardReboot.tag.html index fbbc8af8..1e6b18b7 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/PollCardReboot.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/PollCardReboot.tag.html @@ -63,24 +63,24 @@ import "../components/Avatar.tag.html"; </div> <script type="es6"> - import '../../css/icons.css'; + import "../../css/icons.css"; import session from "../../js/Session"; this.installBundle(session, "poll"); var moment = require('moment'); - this.startDate = moment(opts.poll.startDate).format("DD MMM YYYY"); - if (opts.poll.endDate) { - this.endDate = moment(opts.poll.endDate).format("DD MMM YYYY"); + this.startDate = moment(this.opts.poll.startDate).format("DD MMM YYYY"); + if (this.opts.poll.endDate) { + this.endDate = moment(this.opts.poll.endDate).format("DD MMM YYYY"); } else { - this.endDate = this._t.noEndDate + this.endDate = this._t.noEndDate; } var now = new Date(); - this.ended = opts.poll.endDate<now; - this.running = opts.poll.startDate<now && opts.poll.endDate>now; - this.started = opts.poll.startDate<now && !opts.poll.endDate; - this.starting = opts.poll.startDate>now; + this.ended = this.opts.poll.endDate < now; + this.running = this.opts.poll.startDate < now && opts.poll.endDate>now; + this.started = this.opts.poll.startDate < now && !opts.poll.endDate; + this.starting = this.opts.poll.startDate > now; this.deletePoll = (e) => { e.preventDefault(); diff --git a/pom.xml b/pom.xml index e38c6154..85c163d6 100644 --- a/pom.xml +++ b/pom.xml @@ -177,7 +177,7 @@ <resteasyVersion>3.6.1.Final</resteasyVersion> <jacksonVersion>2.9.7</jacksonVersion> - <nuitonI18nVersion>3.8-SNAPSHOT</nuitonI18nVersion> + <nuitonI18nVersion>4.0-rc-2</nuitonI18nVersion> <eugenePluginVersion>3.0-alpha-10</eugenePluginVersion> <topiaVersion>3.7</topiaVersion> <flywayVersion>6.0.4</flywayVersion> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm