branch develop updated (e1b806b -> 28b4528)
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 e1b806b "datediff" n'est pas un fonction prise en charge par postgres new 28b4528 correction de l'affichage des date picker et time picker suite aux modifications sur les animations 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 28b4528f3e0d7dacf73ec3ffccfcc4f4d7203073 Author: Kevin Morin <morin@codelutin.com> Date: Thu Jun 1 11:16:14 2017 +0200 correction de l'affichage des date picker et time picker suite aux modifications sur les animations Summary of changes: pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html | 2 ++ pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html | 2 ++ 2 files changed, 4 insertions(+) -- 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 28b4528f3e0d7dacf73ec3ffccfcc4f4d7203073 Author: Kevin Morin <morin@codelutin.com> Date: Thu Jun 1 11:16:14 2017 +0200 correction de l'affichage des date picker et time picker suite aux modifications sur les animations --- pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html | 2 ++ pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html index baaf0a2..bdc6a1c 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/date-picker.tag.html @@ -150,12 +150,14 @@ }); this.open = () => { + this.root.style.overflow = 'visible'; this.opts.date.isVisible = true; this.trigger("open"); }; this.close = () => { if (this.opts.date.isVisible) { + this.root.style.overflow = null; this.opts.date.isVisible = false; this.trigger("close"); } diff --git a/pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html index 0e0e13f..0b68158 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/time-picker.tag.html @@ -81,12 +81,14 @@ }); this.open = () => { + this.root.style.overflow = 'visible'; this.opts.time.isVisible = true; this.trigger("open"); }; this.close = () => { if (this.opts.time.isVisible) { + this.root.style.overflow = null; this.opts.time.isVisible = false; this.trigger("close"); } -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm