mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-12 22:45:52 +08:00
This significantly increases the size of the loader: - minified: 1031bytes -> 1509bytes (+46%) - minified + gzip: 593bytes -> 810bytes (+36%) I'm not entirely sold on the idea of shipping minErr with the loade. With the current state, the angular-loader behavior is completely broken - this is just a quick fix, we can revisit this change in the future. Closes #4437 Closes #4874
22 lines
470 B
Plaintext
22 lines
470 B
Plaintext
setupModuleLoader(window);
|
|
})(window);
|
|
|
|
/**
|
|
* Closure compiler type information
|
|
*
|
|
* @typedef { {
|
|
* requires: !Array.<string>,
|
|
* invokeQueue: !Array.<Array.<*>>,
|
|
*
|
|
* service: function(string, Function):angular.Module,
|
|
* factory: function(string, Function):angular.Module,
|
|
* value: function(string, *):angular.Module,
|
|
*
|
|
* filter: function(string, Function):angular.Module,
|
|
*
|
|
* init: function(Function):angular.Module
|
|
* } }
|
|
*/
|
|
angular.Module;
|
|
|