summaryrefslogtreecommitdiff
path: root/examples/webengine/quicknanobrowser/FullScreenNotification.qml
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2017-05-02 16:25:23 +0200
committerKai Koehne <kai.koehne@qt.io>2017-05-02 14:54:29 +0000
commitfa0aa60a9a7da656dad351e89e0a4612e889c7db (patch)
tree44c5a26d9c9b64eb3c94df17692ba39b60612d41 /examples/webengine/quicknanobrowser/FullScreenNotification.qml
parent9265be9445ebd3bcd404dcca9186a1abc5c454cd (diff)
downloadqtwebengine-fa0aa60a9a7da656dad351e89e0a4612e889c7db.tar.gz
QuickNanoBrowser: Unify use of semicolons in JS
See also http://lists.qt-project.org/pipermail/development/2016-October/027441.html Change-Id: Id0f3e5e994e2160f7f199c02d5e79d0ad86a0d70 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'examples/webengine/quicknanobrowser/FullScreenNotification.qml')
-rw-r--r--examples/webengine/quicknanobrowser/FullScreenNotification.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/webengine/quicknanobrowser/FullScreenNotification.qml b/examples/webengine/quicknanobrowser/FullScreenNotification.qml
index 80a63d479..f0487e868 100644
--- a/examples/webengine/quicknanobrowser/FullScreenNotification.qml
+++ b/examples/webengine/quicknanobrowser/FullScreenNotification.qml
@@ -51,14 +51,14 @@ Rectangle {
opacity: 0
function show() {
- visible = true
- opacity = 1
- reset.start()
+ visible = true;
+ opacity = 1;
+ reset.start();
}
function hide() {
- reset.stop()
- opacity = 0
+ reset.stop();
+ opacity = 0;
}
Behavior on opacity {
@@ -66,7 +66,7 @@ Rectangle {
duration: 750
onStopped: {
if (opacity == 0)
- visible = false
+ visible = false;
}
}
}