]> 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:11 +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 6c3651393d1a2ead726a71f7fa71c92dbf6dd74e..89b73cd4484db62294a05c51724fee32f235f802 100644 (file)
@@ -2,15 +2,17 @@
 
 function toggle_mobile_init(App &$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 7fe17ce7e148d75171a1b44b871dd17026d54a88..4ca592f4c880a5c47c1acb432133401eeaa1eaa4 100644 (file)
@@ -22,11 +22,13 @@ function frost_mobile_content_loaded(App &$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 964ea88ec4ed01edb08272b4a3b7e21ce6f4d640..7746109e56df657c50fec7747838ea8184f3cec5 100644 (file)
@@ -24,8 +24,10 @@ function frost_content_loaded(App &$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>';
+       }
 
 }