]> git.mxchange.org Git - friendica.git/commitdiff
Add App->mobileDetect property
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Jan 2019 01:48:29 +0000 (20:48 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Jan 2019 01:48:29 +0000 (20:48 -0500)
src/App.php

index 1045c413dca53f8e0256ce96fb3c9f056e162ef1..ac513b531aaf2605782ec04fc330cc2aae8338a2 100644 (file)
@@ -101,6 +101,11 @@ class App
         */
        private $isAjax;
 
+       /**
+        * @var MobileDetect
+        */
+       public $mobileDetect;
+
        /**
         * Register a stylesheet file path to be included in the <head> tag of every page.
         * Inclusion is done in App->initHead().
@@ -268,6 +273,9 @@ class App
 
                // Detect mobile devices
                $mobile_detect = new MobileDetect();
+
+               $this->mobileDetect = $mobile_detect;
+
                $this->is_mobile = $mobile_detect->isMobile();
                $this->is_tablet = $mobile_detect->isTablet();