diff options
author | Grant Paul <chpwn@chpwn.com> | 2010-10-03 12:38:23 -0700 |
---|---|---|
committer | Jay Freeman <saurik@Jay-Freemans-MacBook-Pro.local> | 2010-10-04 00:12:22 -0700 |
commit | 31bfe325beb05311219eada7a939ec10321b541b (patch) | |
tree | c369231d4b364d22cf2e3a95d421e8223391311b | |
parent | e62f29c63dd001913beeb95b2fa39ad703e36e74 (diff) |
Use a static value for the width of the confirm prompt to prevent it from scrolling on the iPad, where device-width isn't always the same as the real width we want.
-rw-r--r-- | Cydia.app/confirm.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cydia.app/confirm.html b/Cydia.app/confirm.html index 846f465..5a4ed55 100644 --- a/Cydia.app/confirm.html +++ b/Cydia.app/confirm.html @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-16"?> <html><head> <title localize="CONFIRM"></title> - <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"/> + <meta name="viewport" content="width=320, minimum-scale=1.0, maximum-scale=1.0"/> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="stylesheet" type="text/css" href="menes/style.css"/> <script type="text/javascript" src="menes/menes.js"></script> |