You are here

CHANGELOG.txt in JS Callback Handler 5.2

JavaScript callback handler x.x-x.x, xxxx-xx-xx
-----------------------------------------------


JavaScript callback handler 5.x-2.x, xxxx-xx-xx
-----------------------------------------------
Complete rewrite of JS callback handler.  Added a requirement for hook_js() in
  third-party modules, which must return an info array with allowed callbacks.
  Refer to the README for details.  Example:
  <?php
  function example_js() {
    return array(
      'somefunction' => array(
        'callback' => 'example_somefunction',
        'includes' => array('theme', 'unicode'),
        'dependencies' => array('locale', 'filter', 'user'),
      ),
    );
  }
  ?>
Avoid devel.module to get in the way.
Avoid caching of JS callback output.
Moved js_requirements() into js.install.
Fixed lines do not wrap at 80 chars in README.txt.


JavaScript callback handler 5.x-1.0, 2008-04-26
-----------------------------------------------
Initial release of JavaScript callback handler.


File

CHANGELOG.txt
View source
  1. JavaScript callback handler x.x-x.x, xxxx-xx-xx
  2. -----------------------------------------------
  3. JavaScript callback handler 5.x-2.x, xxxx-xx-xx
  4. -----------------------------------------------
  5. Complete rewrite of JS callback handler. Added a requirement for hook_js() in
  6. third-party modules, which must return an info array with allowed callbacks.
  7. Refer to the README for details. Example:
  8. function example_js() {
  9. return array(
  10. 'somefunction' => array(
  11. 'callback' => 'example_somefunction',
  12. 'includes' => array('theme', 'unicode'),
  13. 'dependencies' => array('locale', 'filter', 'user'),
  14. ),
  15. );
  16. }
  17. ?>
  18. Avoid devel.module to get in the way.
  19. Avoid caching of JS callback output.
  20. Moved js_requirements() into js.install.
  21. Fixed lines do not wrap at 80 chars in README.txt.
  22. JavaScript callback handler 5.x-1.0, 2008-04-26
  23. -----------------------------------------------
  24. Initial release of JavaScript callback handler.