aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qml/codingconventions/myscript.js
blob: e7f83c259c087e806ecfa979eb1d2b5baa5e8a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function calculateWidth(parent)
{
    if (parent == null)
        return 0

    var w = parent.width / 3
    // ...
    // more javascript code
    // ...
    console.debug(w)
    return w
}