< documentation
Plugins
Extension Points
boot 1.0.x
usage
Triggers the application framework to initialize, reading in all configurations and scan paths. This plugin provides an entry point to the initialization of the application similar to the way jQuery.ready provides an entry point to the the html dom being ready for plugins. The boot process can be tuned via either client.js or server.js located in app/boot/
options
callback | Function | |
---|---|---|
A callback to be applied after the event ApplicationInitialized and before the event ApplicationLoaded |
examples
This plugin method is usually used inside $(document).ready and causes jquery.claypool to start its magic.
$.boot();
Adding a post-boot callback
$.boot(function());
releases
Project
- app
- app/boot
- app/boot/client.js
- app/boot/server.js
- app/configs
- app/configs/config.js
- app/configs/environments.js
- app/configs/filters.js
- app/configs/logging.js
- app/configs/routes.js
- app/controllers
- app/controllers/example.js
- app/models
- app/models/example.js
- app/services
- app/services/example.js
- app/templates
- app/templates/example.js
- app/views
- app/views/example.js
- index.html
Guides
This guide is applicable to both the jquery-claypool client and server application frameworks. Where the two differ functionally the documentation will provide notes and examples of usage in each environment.