diff options
author | mark <mark> | 2011-05-19 23:25:37 +0000 |
---|---|---|
committer | mark <mark> | 2011-05-19 23:25:37 +0000 |
commit | f1cfd3ba31c346283520ea88ad3b8b265559db02 (patch) | |
tree | 4657d453b185d4265149615c3158a0f22d64d6f6 /httemplate/elements/header.html | |
parent | accf803227b745b7082db3dbbd543b92d3a0f570 (diff) |
user pref to enable mobile menu, #11630
Diffstat (limited to 'httemplate/elements/header.html')
-rw-r--r-- | httemplate/elements/header.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/httemplate/elements/header.html b/httemplate/elements/header.html index 432e9c6af..61d031376 100644 --- a/httemplate/elements/header.html +++ b/httemplate/elements/header.html @@ -190,13 +190,6 @@ if ( ref($_[0]) ) { $head = @_ ? shift : ''; #$head is for things that go in the <HEAD> section } -if ( !defined($mobile) ) { - $mobile = FS::UI::Web::is_mobile(); -} -if ( $cgi->param('mobile') =~ /^(\d)$/ ) { # allow client to override - $mobile = $1; -} - my $conf = new FS::Conf; my $curuser = $FS::CurrentUser::CurrentUser; @@ -204,6 +197,13 @@ my $curuser = $FS::CurrentUser::CurrentUser; my $menu_position = $curuser->option('menu_position') || 'top'; #new default for 1.9 +if ( !defined($mobile) ) { + $mobile = $curuser->option('mobile_menu',1) && FS::UI::Web::is_mobile(); +} +if ( $cgi->param('mobile') =~ /^(\d)$/ ) { # allow client to override + $mobile = $1; +} + my $company_name; my @agentnums = $curuser->agentnums; if ( scalar(@agentnums) == 1 ) { |