From ae7393db3d99a7ac223ae917129cccd9f49888e3 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sun, 27 Jan 2013 04:15:53 +0100 Subject: merged the angularjs branch --- .../docs/partials/api/angular.IModule.html | 116 +++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 3rdparty/js/angular-1.0.2/docs/partials/api/angular.IModule.html (limited to '3rdparty/js/angular-1.0.2/docs/partials/api/angular.IModule.html') diff --git a/3rdparty/js/angular-1.0.2/docs/partials/api/angular.IModule.html b/3rdparty/js/angular-1.0.2/docs/partials/api/angular.IModule.html new file mode 100644 index 000000000..c2b6fead5 --- /dev/null +++ b/3rdparty/js/angular-1.0.2/docs/partials/api/angular.IModule.html @@ -0,0 +1,116 @@ +

Module +(Type in module ng +) +

+

Description

+

Interface for configuring angular modules.

+

Methods

+
  • config(configFn)

    +

    Use this method to register work which needs to be performed on module loading.

    Parameters

    +
    • configFn – {Function} – +

      Execute this function on module load. Useful for service +configuration.

    • +
    +
    +
  • +
  • constant(name, object)

    +

    Because the constant are fixed, they get applied before other provide methods. +See $provide.constant().

    Parameters

    +
    • name – {string} – +

      constant name

    • +
    • object – {*} – +

      Constant value.

    • +
    +
    +
  • +
  • controller(name, constructor)

    +

    See $controllerProvider.register().

    Parameters

    +
    • name – {string} – +

      Controller name.

    • +
    • constructor – {Function} – +

      Controller constructor function.

    • +
    +
    +
  • +
  • directive(name, directiveFactory)

    +

    See $compileProvider.directive().

    Parameters

    +
    • name – {string} – +

      directive name

    • +
    • directiveFactory – {Function} – +

      Factory function for creating new instance of +directives.

    • +
    +
    +
  • +
  • factory(name, providerFunction)

    +

    See $provide.factory().

    Parameters

    +
    • name – {string} – +

      service name

    • +
    • providerFunction – {Function} – +

      Function for creating new instance of the service.

    • +
    +
    +
  • +
  • filter(name, filterFactory)

    +

    See $filterProvider.register().

    Parameters

    +
    • name – {string} – +

      Filter name.

    • +
    • filterFactory – {Function} – +

      Factory function for creating new instance of filter.

    • +
    +
    +
  • +
  • provider(name, providerType)

    +

    See $provide.provider().

    Parameters

    +
    • name – {string} – +

      service name

    • +
    • providerType – {Function} – +

      Construction function for creating new instance of the service.

    • +
    +
    +
  • +
  • run(initializationFn)

    +

    Use this method to register work which needs to be performed when the injector with +with the current module is finished loading.

    Parameters

    +
    • initializationFn – {Function} – +

      Execute this function after injector creation. +Useful for application initialization.

    • +
    +
    +
  • +
  • service(name, constructor)

    +

    See $provide.service().

    Parameters

    +
    • name – {string} – +

      service name

    • +
    • constructor – {Function} – +

      A constructor function that will be instantiated.

    • +
    +
    +
  • +
  • value(name, object)

    +

    See $provide.value().

    Parameters

    +
    • name – {string} – +

      service name

    • +
    • object – {*} – +

      Service instance object.

    • +
    +
    +
  • +
+
+

Properties

+
  • name

    +

    Returns

    +
    {string} +–

    Name of the module.

    +
    +
  • +
  • requires

    +

    Holds the list of modules which the injector will load before the current module is loaded.

    Returns

    +
    {Array.<string>} +–

    List of module names which must be loaded before this module.

    +
    +
  • +
+
+
-- cgit v1.2.3