27 lines
623 B
QML
27 lines
623 B
QML
import QtQuick 6.8
|
|
import QtWebView 6.8
|
|
|
|
WebView {
|
|
implicitWidth: 600
|
|
implicitHeight: 150
|
|
visible: false
|
|
url: "https://youads.nonamesoft.xyz/ads/site"
|
|
|
|
settings.allowFileAccess: false
|
|
settings.javaScriptEnabled: false
|
|
settings.localContentCanAccessFileUrls: false
|
|
settings.localStorageEnabled: false
|
|
|
|
onLoadingChanged: function(loadRequest) {
|
|
visible = loadRequest.status == WebView.LoadSucceededStatus
|
|
}
|
|
|
|
Timer {
|
|
interval: 30 * 60 * 60
|
|
running: true
|
|
repeat: true
|
|
onTriggered: function() {
|
|
parent.reload()
|
|
}
|
|
}
|
|
} |