<@U0H8K7DEV> so the programmer needs to distinguis...
# kweb
s
@Ian so the programmer needs to distinguish between and be aware of code-blocks that build the page and code-blocks that run later, like
Copy code
xyz.apply {
            future { // future required!
                doSomeJavascript().await()
            }
        }
        xyz.on.change {
            // future not required
            doSomeJavascript()
        }