what does this thing do, when the features are separated into individual modules.
1. How much overhead on a page does it have, ie extra js filesize and speed
2. how can i make new modules for it?
what does this thing do, when the features are separated into individual modules.
1. How much overhead on a page does it have, ie extra js filesize and speed
2. how can i make new modules for it?
Comments
Comment #1
nedjoThis module provides some helper methods that may be handy for other modules.
See jstools.js for these methods.
To use this module in your module, make your module dependent on jstools and, when adding a javascript file, call the method jstools_add_js(). E.g.:
This will ensure that the jstools utility functions are available to your javascript.
The extra js loaded is the contents of jstools.js. No idea of the speed overhead.