strange issue on mobile browser #284
Replies: 3 comments 3 replies
-
This issue is only found on page 1. |
Beta Was this translation helpful? Give feedback.
-
It's a known bug of Safari browser itself, but our helper library for Marpit framework also does not apply polyfill correctly because your first slide seems to be changed the DOM structure by #272. If you are using the plugin from #272, try to swap the order of the slide element and injected scripts. // If it is the first slide, prepend <script> tag before the rendered tag.
-if (meta && meta.marpitSlide === 0) return script + rendered
+if (meta && meta.marpitSlide === 0) return rendered + script |
Beta Was this translation helpful? Give feedback.
-
@yhatt sorry to bother you. The problem still there and even more complicate. when I open the page on mobile browser, it will refresh again and again, then crash. Would you please help to take a look into this problem? please open https://365pro.xizhang.com/ or https://365pro.xizhang.com/excel.html |
Beta Was this translation helpful? Give feedback.
-
Hi
I have a simple page like below, I found the first page had a strange issue on mobile browser
it will work fine on PC browser
But it will not work fine on Mobile browser, looks like the image and text can't display correctly.
Can anyone help to test on your device?
The page link is https://365pro.xizhang.com
Beta Was this translation helpful? Give feedback.
All reactions