1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-12 06:08:25 -05:00

Experimental changes to tell WebView that the HTML versions of messages

we generate from ascii are "mobile-optimized"
This commit is contained in:
Jesse Vincent 2010-08-02 01:27:50 +00:00
parent d78e7a0d69
commit cd6b64d88f

View File

@ -2367,7 +2367,7 @@ public class LocalStore extends Store implements Serializable
Matcher m = Regex.WEB_URL_PATTERN.matcher(text);
StringBuffer sb = new StringBuffer(text.length() + 512);
sb.append("<html><head></head><body>");
sb.append("<html><head><meta name=\"viewport\" content=\"width=device-width, height=device-height\"></head><body>");
sb.append(htmlifyMessageHeader());
while (m.find())
{