mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
406 B
HTML
10 lines
406 B
HTML
<!-- Adapted from the AngularJS Developer Guide (https://docs.angularjs.org/guide),
|
|
which is licensed under the MIT license; see file LICENSE in parent directory. -->
|
|
<div ng-controller="MyController">
|
|
Your name:
|
|
<input type="text" ng-model="username"> <!-- ScopeProperty -->
|
|
<button ng-click='sayHello()'>greet</button> <!-- ScopeProperty -->
|
|
<hr>
|
|
{{greeting}} <!-- ScopeProperty -->
|
|
</div>
|