]> git.mxchange.org Git - friendica.git/commitdiff
Opps, forgot this ...
authorRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 11:36:51 +0000 (12:36 +0100)
committerRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 11:38:23 +0000 (12:38 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
mod/toggle_mobile.php
view/theme/frost-mobile/theme.php
view/theme/frost/theme.php

index dbf0eb0f132eec123c97c40f96bc66cbb6846698..8ef2b9fc4ddaa5cd9d22b6bcc2f5ac3ef00d316a 100644 (file)
@@ -2,15 +2,17 @@
 
 function toggle_mobile_init(&$a) {
 
-       if(isset($_GET['off']))
+       if (isset($_GET['off'])) {
                $_SESSION['show-mobile'] = false;
-       else
+       } else {
                $_SESSION['show-mobile'] = true;
+       }
 
-       if(isset($_GET['address']))
+       if (isset($_GET['address'])) {
                $address = $_GET['address'];
-       else
+       } else {
                $address = App::get_baseurl();
+       }
 
        goaway($address);
 }
index 24d5e9e52e0c3e3ec2e76cd32e2408522bad4db0..ceb28c2d6627abd3883c6d9759f9dbed5a83851e 100644 (file)
@@ -22,11 +22,13 @@ function frost_mobile_content_loaded(&$a) {
 
        // I could do this in style.php, but by having the CSS in a file the browser will cache it,
        // making pages load faster
-       if( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
+       if ( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
 //             $a->page['htmlhead'] = str_replace('$stylesheet', App::get_baseurl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']);
                $a->theme['stylesheet'] = App::get_baseurl() . '/view/theme/frost-mobile/login-style.css';
        }
-       if( $a->module === 'login' )
+
+       if ( $a->module === 'login' ) {
                $a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
+       }
 
 }
index 464c14d4703ad6b5e10778b3f131d4c796455502..b93123b3dd6a9a02405b11fe78d034a9856e663d 100644 (file)
@@ -24,8 +24,10 @@ function frost_content_loaded(&$a) {
                //$a->page['htmlhead'] = str_replace('$stylesheet', App::get_baseurl() . '/view/theme/frost/login-style.css', $a->page['htmlhead']);
                $a->theme['stylesheet'] = App::get_baseurl() . '/view/theme/frost/login-style.css';
        }
-       if( $a->module === 'login' )
+
+       if ( $a->module === 'login' ) {
                $a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
+       }
 
 }