You are here

README.txt in LABjs 7

Same filename and directory in other branches
  1. 6 README.txt
= INTRODUCTION =

LABjs is the performance script loader. It loads all your JavaScript in parallel.
Of course, this module is only useful when JavaScript preprocess is
disabled.

Project homepage: http://drupal.org/project/labjs

= INSTALL =

- Enable this module

= COMPATIBILITY =

LABjs, like any other script loader, does not support JavaScript with
document.write() calls at the moment. Don't use those scripts with LABjs, by
adding an "inline" attribute. For example:

// This JS file is required by some inline code that use document.write()
drupal_add_js('/path/to/service.js', array('inline' => TRUE));


This module tries to maintain a maximum compatibility with all JavaScript code.
If you have any problem, please file an issue in the project homepage.

File

README.txt
View source
  1. = INTRODUCTION =
  2. LABjs is the performance script loader. It loads all your JavaScript in parallel.
  3. Of course, this module is only useful when JavaScript preprocess is
  4. disabled.
  5. Project homepage: http://drupal.org/project/labjs
  6. = INSTALL =
  7. - Enable this module
  8. = COMPATIBILITY =
  9. LABjs, like any other script loader, does not support JavaScript with
  10. document.write() calls at the moment. Don't use those scripts with LABjs, by
  11. adding an "inline" attribute. For example:
  12. // This JS file is required by some inline code that use document.write()
  13. drupal_add_js('/path/to/service.js', array('inline' => TRUE));
  14. This module tries to maintain a maximum compatibility with all JavaScript code.
  15. If you have any problem, please file an issue in the project homepage.