Commit 4a4d7f4b authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

add force_mobile parameter for users who want to enforce desktop/mobile view

parent fcf3b499
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -10,7 +10,8 @@


	%= stylesheet '/static/default.css'
% if ($self->browser->mobile) {
% my $force_mobile = param('force_mobile') // -1;
% if ($force_mobile == 1 or ($self->browser->mobile and $force_mobile != 0)) {
	%= stylesheet '/static/mobile.css'
% }
	%= javascript '/static/jquery-1.10.2.min.js'