diff --git a/examples/webkitqml/flickrview/flickrview.qml b/examples/webkitqml/flickrview/flickrview.qml index b303b1b..319c1a8 100644 --- a/examples/webkitqml/flickrview/flickrview.qml +++ b/examples/webkitqml/flickrview/flickrview.qml @@ -67,7 +67,8 @@ Rectangle { id: info color: "white" anchors.horizontalCenter: thumbnailContainer.horizontalCenter - text: webView.title +// text: webView.title + text: "Empty due to WebView being disabled" } ListView { @@ -84,7 +85,7 @@ Rectangle { source: thumbnail MouseArea { anchors.fill: parent - onClicked: webView.url = link + "/lightbox" + onClicked: info.text = link + "/lightbox" } } } @@ -205,7 +206,7 @@ Rectangle { bottom: thumbnailContainer.top } - WebView { +/* WebView { id: webView anchors.fill: parent opacity: 0 @@ -251,13 +252,13 @@ Rectangle { anchors.fill: parent imageSource: "qrc:/images/flickr.png" running: webView.loading - } + } */ } XmlListModel { id: model namespaceDeclarations: "declare namespace media=\"http://search.yahoo.com/mrss/\";" - source: "http://api.flickr.com/services/feeds/photos_public.gne?format=rss2" + source: "https://api.flickr.com/services/feeds/photos_public.gne?format=rss2" query: "/rss/channel/item" XmlRole { name: "thumbnail"; query: "media:thumbnail/@url/string()" } XmlRole { name: "thumbnailHeight"; query: "media:thumbnail/@height/number()" }