Skip to content

Instantly share code, notes, and snippets.

@petebacondarwin
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petebacondarwin/020c78b256dc6d04b5a0 to your computer and use it in GitHub Desktop.
Save petebacondarwin/020c78b256dc6d04b5a0 to your computer and use it in GitHub Desktop.
Lazy Loading ...
index.html
<div ng-include="templateUrl"></div>
template1.html
<h1>Hello</h1>
app.js
if(randomNumber > 0.5) {
module.lazyLoad('appContainingH1Directive');
}
$scope.templateUrl = "template1.html"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment