From: Meitar Moscovitz Date: Tue, 10 Feb 2009 16:12:14 +0000 (+1100) Subject: Trigger only on handheld device screens, not on browser screens, d'oh! X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=beddf906634054b115d41046ac112cd0264dbfe1;p=quix0rs-gnu-social.git Trigger only on handheld device screens, not on browser screens, d'oh! --- diff --git a/lib/action.php b/lib/action.php index ce37f4760a..3e236d7146 100644 --- a/lib/action.php +++ b/lib/action.php @@ -175,7 +175,7 @@ class Action extends HTMLOutputter // lawsuit 'type' => 'text/css', 'href' => theme_path('css/mobile.css', 'base') . '?version=' . LACONICA_VERSION, // TODO: "handheld" CSS for other mobile devices - 'media' => 'screen and (max-device-width: 480px)')); // Mobile WebKit + 'media' => 'only screen and (max-device-width: 480px)')); // Mobile WebKit } }