Tutorial by Topics: lazy

QuantifiersDescription?Match the preceding character or subexpression 0 or 1 times (preferably 1).*Match the preceding character or subexpression 0 or more times (as many as possible).+Match the preceding character or subexpression 1 or more times (as many as possible).{n}Match the preceding chara...
If your lazy loaded dependencies require other lazy loaded dependencies make sure you load them in the right order! angular.module('lazy', [ 'alreadyLoadedDependency1', 'alreadyLoadedDependency2', ... { files: [ 'path/to/lazily/loaded/dependency1.js', 'path/to/lazily/loaded/d...
eager loading is expensive or the object to be loaded might not be needed at all

Page 1 of 1