Open danhite opened 7 years ago
Unfortunately I personally do not own a mac, so it's hard for me to determine what is going on.
Can you:
Unfortunately, this is a page on our website that is only available to doctors who are in our program. It isn’t a page available to the public. Also, the browser completely locks up. The mouse pointer turns into a “spinning beach ball” icon (busy).
I’ve gotten hold of a Mac to test on so maybe I’ll be able to figure it out myself. If I do I’ll post the solution.
Dan
From: wimbarelds [mailto:notifications@github.com] Sent: Wednesday, May 10, 2017 1:56 PM To: wimbarelds/TimeCircles Cc: danhite; Author Subject: Re: [wimbarelds/TimeCircles] Countdown not working on Apple devices (#127)
Unfortunately I personally do not own a mac, so it's hard for me to determine what is going on.
Can you:
Show me a page where this issue exists?
Ask users with tthis issue to "check console" (right click on the page, click inspect element, choose the console tab) and tell me any messages they see in console?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/wimbarelds/TimeCircles/issues/127#issuecomment-300579857 , or mute the thread https://github.com/notifications/unsubscribe-auth/Aa_6OJL1zkOcMcQUm34KdaRIG07H_94fks5r4ggxgaJpZM4NOeZZ . https://github.com/notifications/beacon/Aa_6OJo7lOYqgc544zk9S_eSYayP-exzks5r4ggxgaJpZM4NOeZZ.gif
Here's one thing I've found. On my count-down page, I'm only displaying the seconds counter:
If I turn the Minutes timer on, it works. But I don't want to show the minutes timer...
That is quite strange but interesting. Can you maybe set up a demo page (on a public URL) where you can reproduce this problem? I might be able to borrow a macbook for a little bit, but for that to be useful I do need to at least have an example of a page where this problem exists.
http://www.danhite.com/TimeCirclesDemo/default.htm
Here are the two strange things I've found. First off, it happens that the TimeCircles div is inside a table's TD and the table is inside a styled div:
I put up the page at your request a week ago. If you need more time to look at it I understand. Otherwise I'll take it down. Let me know.
Hey there, sorry I wasn't able to borrow a macbook this week for testing :( Hopefully I'll get a hold of one next week from a colleague, but unfortunately I can't promise that.
2017-05-19 15:14 GMT+02:00 danhite notifications@github.com:
I put up the page at your request a week ago. If you need more time to look at it I understand. Otherwise I'll take it down. Let me know.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/wimbarelds/TimeCircles/issues/127#issuecomment-302699407, or mute the thread https://github.com/notifications/unsubscribe-auth/ACd-310aYYciPzs43oIQFwUIxWDvixuNks5r7ZWYgaJpZM4NOeZZ .
I've had a problem with one of my pages locking up for some Apple devices when I show a countdown timer. Here examples of some UserAgent strings from my weblog (users who had the problem):
_Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.1 Safari/603.1.30 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0.2 Safari/602.3.12 Mozilla/5.0 (iPad; CPU OS 102 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1
My page is an ASP.NET WebForms page and the timer contained in an ASP.NET Panel control (renders as a DIV when the panel's .NET Display property is set to True). The panel with the timer is not displayed initially. It's only after the user clicks submit button that the panel is made visible from a post-back handler in the .NET page's code-behind.
Here's the code on the page relevant to TimeCircles:
The div for the timer (inside the ASP.NET Panel):
The page initially works fine before the Panel containing the timer is displayed. But when the Panel containing the timer is displayed (from a postback handler in the page's the code-behind file), the panel's content is displayed but the timer graphics do not show. Also, the page locks up.
Your demo (http://git.wimbarelds.nl/TimeCircles/index.html) works fine for the users that are having this problem on my site. Any idea what I need to change?
Thanks! Dan