Page 1 of 1

Popup opens and closes very fast on Chrome and Safari

Posted: Tue Oct 14, 2014 6:34 am
by Dan Hoeck

I have a pop up open on load. It only is suppose to close on clicking outside of the popup. While using either Chrome and Safari, on load the pop up opens and then quickly closes. Is this simply an issue with the browsers or is this fixable?


Popup opens and closes very fast on Chrome and Safari

Posted: Tue Oct 14, 2014 7:21 am
by Kateryna Grynko

Hi Dan,

Are there any errors in console (F12)? Do you close popup anywhere?


Popup opens and closes very fast on Chrome and Safari

Posted: Tue Oct 14, 2014 3:43 pm
by Dan Hoeck

Hi Kateryna,

There are no errors in the console, and I do not close the popup, and have no events that close the pop up.

I believe the pop up worked fine before the recent appery update. The only other thing I can think of is I have some javascript files for use on other parts of my app, which may be interfering.

Here is the app if you would like to see.
http://appery.io/app/mobile-frame?src...


Popup opens and closes very fast on Chrome and Safari

Posted: Tue Oct 14, 2014 6:06 pm
by Evgene Karachevtsev

Hello Dan,

Could you please share your project with a href="mailto:support@appery.io" rel="nofollow"support@appery.io/a and tell us its name http://docs.appery.io/documentation/s...


Popup opens and closes very fast on Chrome and Safari

Posted: Wed Oct 15, 2014 4:52 am
by Dan Hoeck

Hi Evgene,

I've shared my project folder.

Thank you, and please let me know your thoughts.


Popup opens and closes very fast on Chrome and Safari

Posted: Wed Oct 15, 2014 4:53 am
by Dan Hoeck

oh, and the project is WeedToMe


Popup opens and closes very fast on Chrome and Safari

Posted: Wed Oct 15, 2014 11:34 am
by Kateryna Grynko

Hi Dan,

Seems to be a bug. We passed it to our developers.


Popup opens and closes very fast on Chrome and Safari

Posted: Wed Oct 15, 2014 4:21 pm
by Dan Hoeck

you got it, thanks


Popup opens and closes very fast on Chrome and Safari

Posted: Thu Jan 15, 2015 3:36 pm
by Maryna Brodina

Hello!

This seems to be JQM or Chrome bug and we would need to wait for a fix from them. You can try the following workaround:

Open popup on load event with following JS code:
prevar popupElement = Apperyio("mobilepopup_2");
setTimeout(function() {popupElement.popup("open",
{ transition: "none" }
);},500);/pre

where "mobilepopup_2" is the name of the popup component.