Skip to content

Commit 6cdbda7

Browse files
committed
fix($compile): Add missing variable declaration
Closes: angular#13521 Closes: angular#13525
1 parent c9e6cf9 commit 6cdbda7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/compile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2142,7 +2142,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
21422142
}
21432143

21442144
function nodeLinkFn(childLinkFn, scope, linkNode, $rootElement, boundTranscludeFn) {
2145-
var linkFn, isolateScope, controllerScope, elementControllers, transcludeFn, $element,
2145+
var i, ii, linkFn, isolateScope, controllerScope, elementControllers, transcludeFn, $element,
21462146
attrs, removeScopeBindingWatches, removeControllerBindingWatches;
21472147

21482148
if (compileNode === linkNode) {

0 commit comments

Comments
 (0)