This feature is experimental. Please share your experiences so we know what to keep or change.
Prevent Unpoly from booting automatically.
By default Unpoly automatically boots
on DOMContentLoaded
.
To prevent this, add an [up-boot="manual"]
attribute to the <html>
element:
<html up-boot="manual"> <!-- mark: up-boot="manual" -->
...
</html>
You may then call up.boot()
to manually boot Unpoly at a later time.