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>.