Opps, forgot this ...
Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
8d28135c59
commit
c22878643b
|
@ -2,15 +2,17 @@
|
||||||
|
|
||||||
function toggle_mobile_init(App &$a) {
|
function toggle_mobile_init(App &$a) {
|
||||||
|
|
||||||
if(isset($_GET['off']))
|
if (isset($_GET['off'])) {
|
||||||
$_SESSION['show-mobile'] = false;
|
$_SESSION['show-mobile'] = false;
|
||||||
else
|
} else {
|
||||||
$_SESSION['show-mobile'] = true;
|
$_SESSION['show-mobile'] = true;
|
||||||
|
}
|
||||||
|
|
||||||
if(isset($_GET['address']))
|
if (isset($_GET['address'])) {
|
||||||
$address = $_GET['address'];
|
$address = $_GET['address'];
|
||||||
else
|
} else {
|
||||||
$address = App::get_baseurl();
|
$address = App::get_baseurl();
|
||||||
|
}
|
||||||
|
|
||||||
goaway($address);
|
goaway($address);
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,9 @@ function frost_mobile_content_loaded(App &$a) {
|
||||||
// $a->page['htmlhead'] = str_replace('$stylesheet', App::get_baseurl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']);
|
// $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';
|
$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>';
|
$a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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->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';
|
$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>';
|
$a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue