Igor Minar 8c076d5a73 fix(upgrade): fix bundling issue and fix e2e test
the previous demo app was broken and is missing an e2e test.

I fixed the app, but was not able to get protractor to properly test
this app. Julie and I are looking into that. For now I manually verified
that the app works and that the original issue was fixed.

Closes #9244
2016-06-21 11:12:42 -07:00

23 lines
559 B
HTML

<!doctype html>
<html>
<title>Angular Upgrade 2.0</title>
<style>
user {
background-color: lightyellow;
border: 2px solid darkorange;
display: inline-block;
width: 150px;
padding: 1em;
}
</style>
<body>
<upgrade-app ng-controller="Index" [user]="name" (reset)="name=''">
Your name: <input ng-model="name">
<hr>
<span class="greeting">Greetings from {{name}}!</span>
</upgrade-app>
<script src="/all/playground/vendor/angular.js"></script>
<script src="../bootstrap.js"></script>
</body>
</html>