angular-loader
Advanced tools
Comparing version 1.6.8 to 1.6.9
/** | ||
* @license AngularJS v1.6.8 | ||
* (c) 2010-2017 Google, Inc. http://angularjs.org | ||
* @license AngularJS v1.6.9 | ||
* (c) 2010-2018 Google, Inc. http://angularjs.org | ||
* License: MIT | ||
@@ -126,3 +126,3 @@ */ | ||
* This object provides a utility for producing rich Error messages within | ||
* Angular. It can be called as follows: | ||
* AngularJS. It can be called as follows: | ||
* | ||
@@ -174,3 +174,3 @@ * var exampleMinErr = minErr('example'); | ||
message += '\nhttp://errors.angularjs.org/1.6.8/' + | ||
message += '\nhttp://errors.angularjs.org/1.6.9/' + | ||
(module ? module + '/' : '') + code; | ||
@@ -192,3 +192,3 @@ | ||
* | ||
* Interface for configuring angular {@link angular.module modules}. | ||
* Interface for configuring AngularJS {@link angular.module modules}. | ||
*/ | ||
@@ -220,5 +220,5 @@ | ||
* | ||
* The `angular.module` is a global place for creating, registering and retrieving Angular | ||
* The `angular.module` is a global place for creating, registering and retrieving AngularJS | ||
* modules. | ||
* All modules (angular core or 3rd party) that should be available to an application must be | ||
* All modules (AngularJS core or 3rd party) that should be available to an application must be | ||
* registered using this mechanism. | ||
@@ -473,3 +473,3 @@ * | ||
* @module ng | ||
* @param {string} name Filter name - this must be a valid angular expression identifier | ||
* @param {string} name Filter name - this must be a valid AngularJS expression identifier | ||
* @param {Function} filterFactory Factory function for creating new instance of filter. | ||
@@ -480,3 +480,3 @@ * @description | ||
* <div class="alert alert-warning"> | ||
* **Note:** Filter names must be valid angular {@link expression} identifiers, such as `uppercase` or `orderBy`. | ||
* **Note:** Filter names must be valid AngularJS {@link expression} identifiers, such as `uppercase` or `orderBy`. | ||
* Names with special characters, such as hyphens and dots, are not allowed. If you wish to namespace | ||
@@ -534,3 +534,9 @@ * your filters, then you can use capitalization (`myappSubsectionFilterx`) or underscores | ||
* @description | ||
* Use this method to register work which needs to be performed on module loading. | ||
* Use this method to configure services by injecting their | ||
* {@link angular.Module#provider `providers`}, e.g. for adding routes to the | ||
* {@link ngRoute.$routeProvider $routeProvider}. | ||
* | ||
* Note that you can only inject {@link angular.Module#provider `providers`} and | ||
* {@link angular.Module#constant `constants`} into this function. | ||
* | ||
* For more about how to configure services, see | ||
@@ -537,0 +543,0 @@ * {@link providers#provider-recipe Provider Recipe}. |
/* | ||
AngularJS v1.6.8 | ||
(c) 2010-2017 Google, Inc. http://angularjs.org | ||
AngularJS v1.6.9 | ||
(c) 2010-2018 Google, Inc. http://angularjs.org | ||
License: MIT | ||
*/ | ||
(function(){'use strict';function g(a,f){f=f||Error;return function(){var d=arguments[0],e;e="["+(a?a+":":"")+d+"] http://errors.angularjs.org/1.6.8/"+(a?a+"/":"")+d;for(d=1;d<arguments.length;d++){e=e+(1==d?"?":"&")+"p"+(d-1)+"=";var q=encodeURIComponent,b;b=arguments[d];b="function"==typeof b?b.toString().replace(/ \{[\s\S]*$/,""):"undefined"==typeof b?"undefined":"string"!=typeof b?JSON.stringify(b):b;e+=q(b)}return new f(e)}}(function(a){function f(a,b,d){return a[b]||(a[b]=d())}var d=g("$injector"), | ||
(function(){'use strict';function g(a,f){f=f||Error;return function(){var d=arguments[0],e;e="["+(a?a+":":"")+d+"] http://errors.angularjs.org/1.6.9/"+(a?a+"/":"")+d;for(d=1;d<arguments.length;d++){e=e+(1==d?"?":"&")+"p"+(d-1)+"=";var q=encodeURIComponent,b;b=arguments[d];b="function"==typeof b?b.toString().replace(/ \{[\s\S]*$/,""):"undefined"==typeof b?"undefined":"string"!=typeof b?JSON.stringify(b):b;e+=q(b)}return new f(e)}}(function(a){function f(a,b,d){return a[b]||(a[b]=d())}var d=g("$injector"), | ||
e=g("ng");a=f(a,"angular",Object);a.$$minErr=a.$$minErr||g;return f(a,"module",function(){var a={};return function(b,g,l){var m={};if("hasOwnProperty"===b)throw e("badname","module");g&&a.hasOwnProperty(b)&&(a[b]=null);return f(a,b,function(){function a(b,d,e,c){c||(c=f);return function(){c[e||"push"]([b,d,arguments]);return h}}function c(a,d,c){c||(c=f);return function(f,e){e&&"function"===typeof e&&(e.$$moduleName=b);c.push([a,d,arguments]);return h}}if(!g)throw d("nomod",b);var f=[],k=[],n=[], | ||
@@ -8,0 +8,0 @@ p=a("$injector","invoke","push",k),h={_invokeQueue:f,_configBlocks:k,_runBlocks:n,info:function(a){if("undefined"!==typeof a){if(null===a||"object"!==typeof a)throw e("aobj","value");m=a;return this}return m},requires:g,name:b,provider:c("$provide","provider"),factory:c("$provide","factory"),service:c("$provide","service"),value:a("$provide","value"),constant:a("$provide","constant","unshift"),decorator:c("$provide","decorator",k),animation:c("$animateProvider","register"),filter:c("$filterProvider", |
{ | ||
"name": "angular-loader", | ||
"version": "1.6.8", | ||
"version": "1.6.9", | ||
"license": "MIT", | ||
@@ -8,4 +8,4 @@ "main": "./angular-loader.js", | ||
"dependencies": { | ||
"angular": "1.6.8" | ||
"angular": "1.6.9" | ||
} | ||
} |
{ | ||
"name": "angular-loader", | ||
"version": "1.6.8", | ||
"version": "1.6.9", | ||
"description": "AngularJS module for asynchronously loading modules", | ||
@@ -5,0 +5,0 @@ "main": "angular-loader.js", |
Sorry, the diff of this file is not supported yet
32199
576