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

11 lines
469 B
JavaScript

// Adapted from the AngularJS Developer Guide (https://docs.angularjs.org/guide),
// which is licensed under the MIT license; see file LICENSE in parent directory.
angular.module('scopeExample', [])
.controller('MyController', ['$scope', function($scope) { // Scope
$scope.username = 'World'; // Scope, ScopeProperty
$scope.sayHello = function() { // Scope, ScopeProperty
$scope.greeting = 'Hello ' + $scope.username + '!'; // Scope, ScopeProperty
};
}]);