mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
237 B
JavaScript
10 lines
237 B
JavaScript
angular.module("MyMod").controller("MyCtrl", function($scope, $timeout) {
|
|
"ngInject";
|
|
// ...
|
|
});
|
|
|
|
angular.module("MyMod").controller("MyCtrl", ["$scope", "$timeout", function($scope, $timeout) {
|
|
"ngNoInject";
|
|
// ...
|
|
}]);
|