add ? to scope in ITemplateLinkingFunction

This commit is contained in:
jraymakers
2014-01-07 18:24:52 -08:00
parent aea6e0dab3
commit 3a82c7c52c
+1 -1
View File
@@ -543,7 +543,7 @@ declare module ng {
}
interface ITemplateLinkingFunction {
(scope: IScope, cloneAttachFn?: ICloneAttachFunction): JQuery;
(scope?: IScope, cloneAttachFn?: ICloneAttachFunction): JQuery;
// scope argument is optional
(cloneAttachFn?: ICloneAttachFunction): JQuery;
}