でフルスクリーンのウェブアプリを作りました<meta name="apple-mobile-web-app-capable" content="yes">
。Web ページをホーム画面に追加すると、すべての JavaScript が機能しなくなります
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body>
<script type="text/javascript" charset="utf-8">
alert(window.navigator.standalone);
</script>
</body>
</html>
このデモは Safari で動作し、アラートは false ですが、ページをホーム画面に追加してからホーム画面から開くと、アラートがなく、Javascript が動作しません。誰がそれの何が悪いのか知っていますか?