From 69375fd8898dd2eb9d8f9e13366580afb55315af Mon Sep 17 00:00:00 2001 From: Vasil Chimev Date: Fri, 6 Nov 2015 17:13:10 +0200 Subject: [PATCH] Delete semicolons. --- ui/web-view/web-view.android.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/web-view/web-view.android.ts b/ui/web-view/web-view.android.ts index 241f7c58d..c50add9ef 100644 --- a/ui/web-view/web-view.android.ts +++ b/ui/web-view/web-view.android.ts @@ -104,7 +104,7 @@ export class WebView extends common.WebView { } var baseUrl = `file:///${path.substring(0, path.lastIndexOf('/') + 1) }`; - this._android.loadDataWithBaseURL(baseUrl, content, "text/html;", "utf-8", null); + this._android.loadDataWithBaseURL(baseUrl, content, "text/html", "utf-8", null); } public _loadHttp(src: string) { @@ -121,7 +121,7 @@ export class WebView extends common.WebView { } var baseUrl = `file:///${fs.knownFolders.currentApp().path}/`; - this._android.loadDataWithBaseURL(baseUrl, src, "text/html;", "utf-8", null); + this._android.loadDataWithBaseURL(baseUrl, src, "text/html", "utf-8", null); } get canGoBack(): boolean {