Merge pull request #1158 from georgiosd/patch-2

NG directives: fixes
This commit is contained in:
basarat
2013-10-21 14:18:00 -07:00

View File

@@ -668,15 +668,15 @@ declare module ng {
interface IDirective{
priority?: number;
template?: string;
templateUrl?: string;
template?: any;
templateUrl?: any;
replace?: boolean;
transclude?: any;
restrict?: string;
scope?: any;
link?: Function;
compile?: Function;
controller?: Function;
controller?: any;
}
///////////////////////////////////////////////////////////////////////////