mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-06 07:28:53 -05:00
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
|
|
/>
|
|
<title>Chapters Editor</title>
|
|
<!-- Add meta tag to help iOS devices render as desktop -->
|
|
<script>
|
|
// Try to detect iOS
|
|
const isIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
|
|
|
if (isIOS) {
|
|
// Replace viewport meta tag with one optimized for desktop view
|
|
const viewportMeta = document.querySelector('meta[name="viewport"]');
|
|
if (viewportMeta) {
|
|
viewportMeta.setAttribute(
|
|
'content',
|
|
'width=1024, initial-scale=1.0, maximum-scale=1.0, user-scalable=no'
|
|
);
|
|
}
|
|
|
|
// Add a class to the HTML element for iOS-specific styles
|
|
document.documentElement.classList.add('ios-device');
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="chapters-editor-root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|