mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
fix: update to standardized mobile web app meta tag syntax (#5672)
## Summary Fixed WebKit deprecation warning by updating to standardized mobile web app meta tag syntax. ## Changes - **What**: Replaced deprecated `apple-mobile-web-app-capable` with cross-platform [`mobile-web-app-capable`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name#mobile-web-app-capable) meta tag to align with WebKit's move toward vendor-neutral standards ## Review Focus Verify "Add to Home Screen" functionality still works on iOS/iPadOS and that the WebKit console warning is resolved in production builds. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-5672-fix-update-to-standardized-mobile-web-app-meta-tag-syntax-2736d73d3650811cb2a1f0b14ce0a0e7) by [Unito](https://www.unito.io)
This commit is contained in:
@@ -8,8 +8,8 @@
|
|||||||
<link rel="stylesheet" type="text/css" href="user.css" />
|
<link rel="stylesheet" type="text/css" href="user.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="api/userdata/user.css" />
|
<link rel="stylesheet" type="text/css" href="api/userdata/user.css" />
|
||||||
|
|
||||||
<!-- Fullscreen mode on iOS -->
|
<!-- Fullscreen mode on mobile browsers -->
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="mobile-web-app-capable" content="yes">
|
||||||
<!-- Status bar style (eg. black or transparent) -->
|
<!-- Status bar style (eg. black or transparent) -->
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user