diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-10-01 07:45:09 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-10-01 07:45:09 +0000 |
commit | 1673a9540bc7551d9b115673de524939b60689ba (patch) | |
tree | 8f6cf9d29c63644c99debc71b7cfad840de9783e | |
parent | 752648ebf52431c073ecfa6e27d1f3b8c5142d96 (diff) | |
download | redmine-1673a9540bc7551d9b115673de524939b60689ba.tar.gz redmine-1673a9540bc7551d9b115673de524939b60689ba.zip |
Set user-scalable=no in viewport meta tag (#23883).
Patch by Felix Gliesche.
git-svn-id: http://svn.redmine.org/redmine/trunk@15849 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/layouts/base.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/base.html.erb b/app/views/layouts/base.html.erb index 6c5a9b264..204cdb614 100644 --- a/app/views/layouts/base.html.erb +++ b/app/views/layouts/base.html.erb @@ -4,7 +4,7 @@ <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <title><%= html_title %></title> -<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> +<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <meta name="description" content="<%= Redmine::Info.app_name %>" /> <meta name="keywords" content="issue,bug,tracker" /> <%= csrf_meta_tag %> |