We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7031921 commit c5564cfCopy full SHA for c5564cf
live-view/live-view.js
@@ -618,7 +618,11 @@ if (isMobile) {
618
const liveViewWindow = window.open(liveViewURL, '_blank');
619
620
// replace URL in window address bar
621
- liveViewWindow.window.history.replaceState({}, 'Codeit', window.location.origin + '/run');
+ liveViewWindow.addEventListener('DOMContentLoaded', () => {
622
+
623
+ liveViewWindow.window.history.replaceState({}, 'Codeit', window.location.origin + '/run');
624
625
+ });
626
627
628
// close inline live view
0 commit comments