refactor(ngController): remove unused deps

This commit is contained in:
Vojta Jina 2012-03-22 16:29:31 -07:00
parent 98e18a64aa
commit 541bedd1a9

View file

@ -95,9 +95,9 @@
</doc:scenario>
</doc:example>
*/
var ngControllerDirective = ['$controller', '$window', function($controller, $window) {
var ngControllerDirective = [function() {
return {
scope: true,
controller: '@'
}
};
}];