admin管理员组文章数量:1344319
really annoying me now,
I've stripped my code down to this
$(function(){
if ( ("standalone" in window.navigator) && !window.navigator.standalone ) {
alert('full screen');
}
});
yet every time I run this on my ipad FROM safari it kicks out the alert.
I've no idea why and its causing chaos to my whole uni project which is due monday! Any help would be amazing.
really annoying me now,
I've stripped my code down to this
$(function(){
if ( ("standalone" in window.navigator) && !window.navigator.standalone ) {
alert('full screen');
}
});
yet every time I run this on my ipad FROM safari it kicks out the alert.
I've no idea why and its causing chaos to my whole uni project which is due monday! Any help would be amazing.
Share Improve this question edited May 17, 2012 at 16:42 Sampson 269k76 gold badges545 silver badges568 bronze badges asked May 17, 2012 at 16:41 owenmelbzowenmelbz 6,58418 gold badges69 silver badges121 bronze badges 2- 1 gah, I had different code before, without the ! and saw someone said this above code was more reliable. so i just swapped it out without noticing the ! thanks. – owenmelbz Commented May 17, 2012 at 16:50
-
2
You should post that as an answer and accept it so that your question doesn't appear in the
unanswered
tab. – Alexandre Khoury Commented Jun 30, 2012 at 14:49
1 Answer
Reset to default 8When/if the web page is in standard/usual Safari mode, the "window.navigator.standalone" value will be False. Only when the web page is in "app mode/i.e. full screen mode", this value will be True. NOTE: this JavaScript value does not exist in browsers that do not support "app mode/i.e. full screen mode". So you should test both for the very existence of the property window.navigator.standalone as well as for its truthfulness.
本文标签: web applicationsJavascript windownavigatorstandalone brokenStack Overflow
版权声明:本文标题:web applications - Javascript window.navigator.standalone broken - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743776064a2537002.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论