EVOLUTION-MANAGER
Edit File: index-jquery.html
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example8-jquery</title> <link href="app.css" rel="stylesheet" type="text/css"> <script src="../../components/jquery-2.1.1/jquery.js"></script> <script src="../../../angular.js"></script> <script src="app.js"></script> </head> <body ng-app="scopeInheritance"> <div class="spicy"> <div ng-controller="MainController"> <p>Good {{timeOfDay}}, {{name}}!</p> <div ng-controller="ChildController"> <p>Good {{timeOfDay}}, {{name}}!</p> <div ng-controller="GrandChildController"> <p>Good {{timeOfDay}}, {{name}}!</p> </div> </div> </div> </div> </body> </html>