Documentation generator: JsDoc Toolkit 2.4.0
Template: Codeview 1.2
Generated on: 2016-0-4 21:22

Built-In Namespace _global_

Method Summary

Method Attributes Method Name and Description
 
enchant(modules)
Export the library classes globally.

Method Detail

  • enchant(modules)
    Export the library classes globally. When no arguments are given, all classes defined in enchant.js as well as all classes defined in plugins will be exported. When more than one argument is given, by default only classes defined in enchant.js will be exported. When you wish to export plugin classes you must explicitly deliver the plugin identifiers as arguments.
    Defined in: enchant.js.
    enchant();     // All classes will be exported.
    enchant('');   // Only classes in enchant.js will be exported.
    enchant('ui'); // enchant.js classes and ui.enchant.js classes will be exported.
    Parameters:
    {...String} modules Optional
    Export module. Multiple designations possible.