Correct ICustomScope reference

This commit is contained in:
Matt Jibson
2014-01-31 16:37:56 -05:00
parent a981700446
commit 5b07c2c85e

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';
}