We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f148b6f commit 5d2da5fCopy full SHA for 5d2da5f
live-view/extensions/mobile-console/console-sheet.js
@@ -105,11 +105,23 @@ class ConsoleSheet {
105
106
duplicateBadge.classList.add('animating');
107
108
- window.setTimeout(() => {
+ if (isSafari) {
109
+
110
+ onNextFrame(() => {
111
112
+ duplicateBadge.classList.remove('animating');
113
114
+ });
115
- duplicateBadge.classList.remove('animating');
116
+ } else {
117
- }, 0);
118
+ window.setTimeout(() => {
119
120
121
122
+ }, 0);
123
124
+ }
125
126
} else {
127
0 commit comments