Revert "Add work-around for Asus Transformer WebView display bug"

This reverts commit 78428e287b.
This commit is contained in:
cketti 2014-01-05 04:16:34 +01:00
parent 54faf52f16
commit 94296ec7df
1 changed files with 1 additions and 7 deletions

View File

@ -179,13 +179,7 @@ public class MessageWebView extends RigidWebView {
}
content += HtmlConverter.cssStylePre();
content += "</head><body>" + text + "</body></html>";
// Workaround for asus transformer devices
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN) {
loadData(content, "text/html; charset=UTF-8", "utf-8");
} else {
loadDataWithBaseURL("http://", content, "text/html", "utf-8", null);
}
loadDataWithBaseURL("http://", content, "text/html", "utf-8", null);
}
/*