Files
codeql/javascript/ql/test/library-tests/frameworks/AngularJS/scopes/dev-guide-2.html
2018-08-02 17:53:23 +01:00

13 lines
475 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 class="show-scope-demo">
<div ng-controller="GreetController">
Hello {{name}}! <!-- ScopeProperty -->
</div>
<div ng-controller="ListController">
<ol>
<li ng-repeat="name in names">{{name}} from {{department}}</li> <!-- ScopeProperty, RootScopeProperty -->
</ol>
</div>
</div>