diff options
Diffstat (limited to 'components/package/contents/ui/WebView.qml')
-rw-r--r-- | components/package/contents/ui/WebView.qml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/components/package/contents/ui/WebView.qml b/components/package/contents/ui/WebView.qml index ac5735ba..509c9809 100644 --- a/components/package/contents/ui/WebView.qml +++ b/components/package/contents/ui/WebView.qml | |||
@@ -28,8 +28,11 @@ Item { | |||
28 | id: htmlView | 28 | id: htmlView |
29 | anchors.fill: parent | 29 | anchors.fill: parent |
30 | onLoadingChanged: { | 30 | onLoadingChanged: { |
31 | console.debug("Error is ", loadRequest.errorString); | 31 | // console.debug("Status is ", loadRequest.status); |
32 | console.debug("Status is ", loadRequest.status); | 32 | // console.debug("Url is ", loadRequest.url); |
33 | if (loadRequest.errorCode) { | ||
34 | console.warn("Error is ", loadRequest.errorString); | ||
35 | } | ||
33 | } | 36 | } |
34 | Component.onCompleted: { | 37 | Component.onCompleted: { |
35 | loadHtml(content, "file:///") | 38 | loadHtml(content, "file:///") |