Hello folks,
My RC 1.1.3 show 'zoomed' mails for me on the (latest?) iPhone, in mail-view, default larry-skin.
I tested iphone (9.0.0) and ipad (9.0.0), and on the -pad everything is OK, but on the -phone, when you double-tap an email in the overview just after logging in, everything is zoomed out and unusable (see attachment, all you see is the logo). Can't seem to un-zoom. Everything is there when you scroll, it's just unreadable.
Has anyone seen this as well?
(Can't check trac, seems down)
Maarten.
On 10/05/2015 04:27 PM, Mrten wrote:
My RC 1.1.3 show 'zoomed' mails for me on the (latest?) iPhone, in mail-view, default larry-skin.
I tested iphone (9.0.0) and ipad (9.0.0), and on the -pad everything is OK, but on the -phone, when you double-tap an email in the overview just after logging in, everything is zoomed out and unusable (see attachment, all you see is the logo). Can't seem to un-zoom. Everything is there when you scroll, it's just unreadable.
Has anyone seen this as well?
http://trac.roundcube.net/ticket/1490551
In case the page is down again.... "Removing the if(bw.tablet) before the viewport assignment fixed the zoom problem on iPhone."
https://github.com/roundcube/roundcubemail/blob/release-1.1/skins/larry/ui.j...
Could you provide the User-Agent string for your device/browser?
On 05-10-2015 16:34:47, A.L.E.C wrote:
Hello Alec,
I tested iphone (9.0.0) and ipad (9.0.0), and on the -pad everything is OK, but on the -phone, when you double-tap an email in the overview just after logging in, everything is zoomed out and unusable (see attachment, all you see is the logo). Can't seem to un-zoom. Everything is there when you scroll, it's just unreadable.
Has anyone seen this as well?
had access to that moments later, of course.
In case the page is down again.... "Removing the if(bw.tablet) before the viewport assignment fixed the zoom problem on iPhone."
"fixes" is relative: the page isn't zoomed anymore but lots of UI elements overlap each other.
https://github.com/roundcube/roundcubemail/blob/release-1.1/skins/larry/ui.j...
Could you provide the User-Agent string for your device/browser?
In the bug!
Thanks for the fast reply, Maarten.
I have gotten many user complaints about this as well. In IOS8 RC/larry was not pretty, but usable. In IOS9 it's not usable on iphone. We unfortunately had to resort to offering classic to people, because the mobile experience of RC with the larry theme is not functional.
I hope there'll be some effort trying to get larry somewhat working again. Dont ask me why, but people seem to want to use roundcube on their mobile phones.
Cor
On 10/05/2015 04:53 PM, Maarten van Baarsel wrote:
"fixes" is relative: the page isn't zoomed anymore but lots of UI elements overlap each other.
So, the line we use in ui.js is: $('#viewport').attr('content', "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0");
some sources say that changing the content string to:
"width=device-width, initial-scale=1.00001, maximum-scale=1.00001, user-scalable=0"
or
"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no"
may fix the issue. However, this viewport setting was always intended only for tablets. It wasn't used on iPod. Maybe we need to use it for more cases, i.e.
if (bw.tablet || (bw.mobile && bw.safari)) ...