blob: a26fff06ba8cfdcb601083c52f65e5fd71c83fa8 [file]
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example78-debug</title>
<link href="app.css" rel="stylesheet" type="text/css">
<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>