summaryrefslogtreecommitdiffstats
path: root/examples/webengine/recipebrowser/resources/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/webengine/recipebrowser/resources/qml/main.qml')
-rw-r--r--examples/webengine/recipebrowser/resources/qml/main.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/webengine/recipebrowser/resources/qml/main.qml b/examples/webengine/recipebrowser/resources/qml/main.qml
index 899d307cf..2639b6b5d 100644
--- a/examples/webengine/recipebrowser/resources/qml/main.qml
+++ b/examples/webengine/recipebrowser/resources/qml/main.qml
@@ -99,7 +99,9 @@ ApplicationWindow {
Layout.fillHeight: true
focus: true
KeyNavigation.tab: webView
- onRecipeSelected: webView.showRecipe(url)
+ onRecipeSelected: function(url) {
+ webView.showRecipe(url)
+ }
}
WebEngineView {
@@ -118,7 +120,7 @@ ApplicationWindow {
}
property bool firstLoadComplete: false
- onLoadingChanged: {
+ onLoadingChanged: function(loadRequest) {
if (loadRequest.status === WebEngineView.LoadSucceededStatus
&& !firstLoadComplete) {
// Debounce the showing of the web content, so images are more likely