This repository has been archived on 2023-11-19. You can view files and clone it, but cannot push or open issues or pull requests.
goober-bb10/assets/WebViewSheet.qml

26 lines
798 B
QML
Raw Normal View History

import bb.cascades 1.4
Sheet {
peekEnabled: false
property alias url: webview.url
Page {
ScrollView {
scrollViewProperties.pinchToZoomEnabled: true
scrollViewProperties.scrollMode: ScrollMode.Both
WebView {
id: webview
settings.zoomToFitEnabled: true
onUrlChanged: {
//console.log("::" + url)
// Workaround for 10.3.3
if (url.toString().match(/http\:\/\/.*#access_token\=/i)) {
//console.log("Matched url: " + url.toString());
webview.stop();
webview.url = url.toString();
}
}
}
}
}
}