your documentation would be made much better if you allowed for comments. Similar to how the php website is made.
For example: on this page http://www.gravityhelp.com/documentation/page/Gravity_form_enqueue_scripts
much is missing, and there is no way to inform others or the developers that this page is lacking.
just adding:
gravity_form_enqueue_scripts(4, true);
will not work because you need to add it in the init hook, a little more like this:
function rt_gf_init() {
if ( ! is_admin() && function_exists('gravity_form_enqueue_scripts')){
gravity_form_enqueue_scripts(1, false);
}
}
add_action('init', 'rt_gf_init');
in the functions.php
but now that I'm writing this here, no one who reads the documentation will get that message. even as I revisit it, i forget how it works. please make you documentation allow comments or wiki style editing.
thanks,
Deryk