summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--css/index.css4
-rw-r--r--index.html1
-rw-r--r--js/index.js5
3 files changed, 9 insertions, 1 deletions
diff --git a/css/index.css b/css/index.css
index 17ff626..6503ac8 100644
--- a/css/index.css
+++ b/css/index.css
@@ -53,3 +53,7 @@ body {
.pdfpage {
overflow: auto;
}
+
+body.iOS7 {
+ -webkit-transform: translate3d(0, 20px, 0);
+}
diff --git a/index.html b/index.html
index 556f7b0..41faa71 100644
--- a/index.html
+++ b/index.html
@@ -20,7 +20,6 @@
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
- <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.4.2.min.css" />
diff --git a/js/index.js b/js/index.js
index 28f5a58..505020a 100644
--- a/js/index.js
+++ b/js/index.js
@@ -147,6 +147,11 @@ $('#mainpage').on('pagebeforeshow', function(){
// Login-Popup beim Start
document.addEventListener('deviceready', function(){
+ /* iOS fix */
+ if(window.device && parseFloat(window.device.version) >= 7.0) {
+ $('body').addClass('iOS7');
+ }
+
/* los geht's */
_paq.push(['setCustomVariable', 1, 'Modell', device.model, 'visit']);
_paq.push(['setCustomVariable', 2, 'Version', device.version, 'visit']);