Mobile Safari has a different user agent when standalone.
[pwl6.git] / src / yuu / core.js
index 25d3ed2..1d64e98 100644 (file)
@@ -7,6 +7,10 @@
 (function (yuu) {
     "use strict";
 
+    yuu.isSafari = function (ua) {
+        return /^((?!chrome).)*safari/i.test(ua || navigator.userAgent)
+            || navigator.standalone;
+    };
 
     yuu.require = function (m) {
         try { return require(m); }
@@ -70,6 +74,9 @@
         /** Initialize Yuu and call all registered hooks
          */
 
+        document.body.className += (navigator.standalone || gui)
+            ? " standalone" : " browser";
+
         if (gui) {
             var win = gui.Window.get();
             var nativeMenuBar = new gui.Menu({ type: "menubar" });
                 wkdoc.hidden = false;
                 wkdoc.dispatchEvent(ev);
             });
+            win.on('new-win-policy', function (frame, url, policy) {
+                if (url.startsWith('chrome')) {
+                    policy.forceNewPopup();
+                } else {
+                    policy.ignore();
+                    gui.Shell.openExternal(url);
+                }
+            });
         }
 
         return new Promise(function (resolve) {