Hi guys I'm trying to detect if my jquerymobile app is running as an APP (i.e from home screen). My current code is:

if (window.navigator.standalone)
  Data.isRunningAsApp = true;

Problem is I've heard this code is better according to this

if (("standalone" in window.navigator) && !window.navigator.standalone) {}

I get what the first segment is doing (testing is the property exists) but I don't understand the second segment. (From a syntax perspective I thought I did, but it seems contradictory to me!)

link|improve this question

55% accept rate
feedback

2 Answers

Read the paragraph above the code example in the blog post. The if is detecting for a supported browser that is not in the app mode.

link|improve this answer
feedback

It's just:

  1. first checking if the object window.navigator has a property called "standalone"

  2. then comparing the property window.navigator.standalone to FALSE -> !window.navigator.standalone is the same as window.navigator.standalone != true

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.