Merge pull request #1655 from mjibson/patch-1

angularjs: docs: Correct ICustomScope reference
This commit is contained in:
Igorbek
2014-02-01 00:17:18 -08:00
+1 -1
View File
@@ -95,7 +95,7 @@ interface ICustomScope extends ng.IScope {
title: string;
}
function Controller($scope: ng.ICustomScope) {
function Controller($scope: ICustomScope) {
$scope.$broadcast('myEvent');
$scope.title = 'Yabadabadu';
}