diff options
| -rw-r--r-- | src/Angular.js | 22 | ||||
| -rw-r--r-- | src/AngularPublic.js | 1 | ||||
| -rw-r--r-- | src/jqLite.js | 1 | ||||
| -rw-r--r-- | src/loader.js | 15 |
4 files changed, 39 insertions, 0 deletions
diff --git a/src/Angular.js b/src/Angular.js index bccaeebd..408221a1 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -90,6 +90,7 @@ /** * @ngdoc function * @name angular.lowercase + * @module ng * @function * * @description Converts the specified string to lowercase. @@ -102,6 +103,7 @@ var hasOwnProperty = Object.prototype.hasOwnProperty; /** * @ngdoc function * @name angular.uppercase + * @module ng * @function * * @description Converts the specified string to uppercase. @@ -185,6 +187,7 @@ function isArrayLike(obj) { /** * @ngdoc function * @name angular.forEach + * @module ng * @function * * @description @@ -313,6 +316,7 @@ function setHashKey(obj, h) { /** * @ngdoc function * @name angular.extend + * @module ng * @function * * @description @@ -349,6 +353,7 @@ function inherit(parent, extra) { /** * @ngdoc function * @name angular.noop + * @module ng * @function * * @description @@ -368,6 +373,7 @@ noop.$inject = []; /** * @ngdoc function * @name angular.identity + * @module ng * @function * * @description @@ -389,6 +395,7 @@ function valueFn(value) {return function() {return value;};} /** * @ngdoc function * @name angular.isUndefined + * @module ng * @function * * @description @@ -403,6 +410,7 @@ function isUndefined(value){return typeof value === 'undefined';} /** * @ngdoc function * @name angular.isDefined + * @module ng * @function * * @description @@ -417,6 +425,7 @@ function isDefined(value){return typeof value !== 'undefined';} /** * @ngdoc function * @name angular.isObject + * @module ng * @function * * @description @@ -432,6 +441,7 @@ function isObject(value){return value != null && typeof value === 'object';} /** * @ngdoc function * @name angular.isString + * @module ng * @function * * @description @@ -446,6 +456,7 @@ function isString(value){return typeof value === 'string';} /** * @ngdoc function * @name angular.isNumber + * @module ng * @function * * @description @@ -460,6 +471,7 @@ function isNumber(value){return typeof value === 'number';} /** * @ngdoc function * @name angular.isDate + * @module ng * @function * * @description @@ -476,6 +488,7 @@ function isDate(value){ /** * @ngdoc function * @name angular.isArray + * @module ng * @function * * @description @@ -492,6 +505,7 @@ function isArray(value) { /** * @ngdoc function * @name angular.isFunction + * @module ng * @function * * @description @@ -560,6 +574,7 @@ var trim = (function() { /** * @ngdoc function * @name angular.isElement + * @module ng * @function * * @description @@ -670,6 +685,7 @@ function isLeafNode (node) { /** * @ngdoc function * @name angular.copy + * @module ng * @function * * @description @@ -785,6 +801,7 @@ function shallowCopy(src, dst) { /** * @ngdoc function * @name angular.equals + * @module ng * @function * * @description @@ -871,6 +888,7 @@ function sliceArgs(args, startIndex) { /** * @ngdoc function * @name angular.bind + * @module ng * @function * * @description @@ -926,6 +944,7 @@ function toJsonReplacer(key, value) { /** * @ngdoc function * @name angular.toJson + * @module ng * @function * * @description @@ -945,6 +964,7 @@ function toJson(obj, pretty) { /** * @ngdoc function * @name angular.fromJson + * @module ng * @function * * @description @@ -1101,6 +1121,7 @@ function encodeUriQuery(val, pctEncodeSpaces) { /** * @ngdoc directive * @name ng.directive:ngApp + * @module ng * * @element ANY * @param {angular.Module} ngApp an optional application @@ -1190,6 +1211,7 @@ function angularInit(element, bootstrap) { /** * @ngdoc function * @name angular.bootstrap + * @module ng * @description * Use this function to manually start up angular application. * diff --git a/src/AngularPublic.js b/src/AngularPublic.js index 14fe25ae..ed57b194 100644 --- a/src/AngularPublic.js +++ b/src/AngularPublic.js @@ -79,6 +79,7 @@ /** * @ngdoc property * @name angular.version + * @module ng * @description * An object that contains information about the current AngularJS version. This object has the * following properties: diff --git a/src/jqLite.js b/src/jqLite.js index 6056730a..ae525b88 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -15,6 +15,7 @@ /** * @ngdoc function * @name angular.element + * @module ng * @function * * @description diff --git a/src/loader.js b/src/loader.js index 787fcbfa..d41ff593 100644 --- a/src/loader.js +++ b/src/loader.js @@ -3,6 +3,7 @@ /** * @ngdoc interface * @name angular.Module + * @module ng * @description * * Interface for configuring angular {@link angular.module modules}. @@ -29,6 +30,7 @@ function setupModuleLoader(window) { /** * @ngdoc function * @name angular.module + * @module ng * @description * * The `angular.module` is a global place for creating, registering and retrieving Angular @@ -111,6 +113,7 @@ function setupModuleLoader(window) { /** * @ngdoc property * @name angular.Module#requires + * @module ng * @propertyOf angular.Module * @returns {Array.<string>} List of module names which must be loaded before this module. * @description @@ -122,6 +125,7 @@ function setupModuleLoader(window) { /** * @ngdoc property * @name angular.Module#name + * @module ng * @propertyOf angular.Module * @returns {string} Name of the module. * @description @@ -132,6 +136,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#provider + * @module ng * @methodOf angular.Module * @param {string} name service name * @param {Function} providerType Construction function for creating new instance of the @@ -144,6 +149,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#factory + * @module ng * @methodOf angular.Module * @param {string} name service name * @param {Function} providerFunction Function for creating new instance of the service. @@ -155,6 +161,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#service + * @module ng * @methodOf angular.Module * @param {string} name service name * @param {Function} constructor A constructor function that will be instantiated. @@ -166,6 +173,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#value + * @module ng * @methodOf angular.Module * @param {string} name service name * @param {*} object Service instance object. @@ -177,6 +185,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#constant + * @module ng * @methodOf angular.Module * @param {string} name constant name * @param {*} object Constant value. @@ -189,6 +198,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#animation + * @module ng * @methodOf angular.Module * @param {string} name animation name * @param {Function} animationFactory Factory function for creating new instance of an @@ -223,6 +233,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#filter + * @module ng * @methodOf angular.Module * @param {string} name Filter name. * @param {Function} filterFactory Factory function for creating new instance of filter. @@ -234,6 +245,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#controller + * @module ng * @methodOf angular.Module * @param {string|Object} name Controller name, or an object map of controllers where the * keys are the names and the values are the constructors. @@ -246,6 +258,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#directive + * @module ng * @methodOf angular.Module * @param {string|Object} name Directive name, or an object map of directives where the * keys are the names and the values are the factories. @@ -259,6 +272,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#config + * @module ng * @methodOf angular.Module * @param {Function} configFn Execute this function on module load. Useful for service * configuration. @@ -270,6 +284,7 @@ function setupModuleLoader(window) { /** * @ngdoc method * @name angular.Module#run + * @module ng * @methodOf angular.Module * @param {Function} initializationFn Execute this function after injector creation. * Useful for application initialization. |
