@@ -107,7 +107,7 @@ functions.findBindings = function(binding, exactMatch, using, rootSelector) {
107
107
function repeaterMatch ( ngRepeat , repeater , exact ) {
108
108
if ( exact ) {
109
109
return ngRepeat . split ( ' track by ' ) [ 0 ] . split ( ' as ' ) [ 0 ] . split ( '|' ) [ 0 ] .
110
- trim ( ) == repeater ;
110
+ split ( '=' ) [ 0 ] . trim ( ) == repeater ;
111
111
} else {
112
112
return ngRepeat . indexOf ( repeater ) != - 1 ;
113
113
}
@@ -166,7 +166,7 @@ functions.findBindings = function(binding, exactMatch, using, rootSelector) {
166
166
function repeaterMatch ( ngRepeat , repeater , exact ) {
167
167
if ( exact ) {
168
168
return ngRepeat . split ( ' track by ' ) [ 0 ] . split ( ' as ' ) [ 0 ] . split ( '|' ) [ 0 ] .
169
- trim ( ) == repeater ;
169
+ split ( '=' ) [ 0 ] . trim ( ) == repeater ;
170
170
} else {
171
171
return ngRepeat . indexOf ( repeater ) != - 1 ;
172
172
}
@@ -222,7 +222,7 @@ functions.findRepeaterElement = function(repeater, exact, index, binding, using,
222
222
function repeaterMatch ( ngRepeat , repeater , exact ) {
223
223
if ( exact ) {
224
224
return ngRepeat . split ( ' track by ' ) [ 0 ] . split ( ' as ' ) [ 0 ] . split ( '|' ) [ 0 ] .
225
- trim ( ) == repeater ;
225
+ split ( '=' ) [ 0 ] . trim ( ) == repeater ;
226
226
} else {
227
227
return ngRepeat . indexOf ( repeater ) != - 1 ;
228
228
}
@@ -329,7 +329,7 @@ functions.findRepeaterColumn = function(repeater, exact, binding, using, rootSel
329
329
function repeaterMatch ( ngRepeat , repeater , exact ) {
330
330
if ( exact ) {
331
331
return ngRepeat . split ( ' track by ' ) [ 0 ] . split ( ' as ' ) [ 0 ] . split ( '|' ) [ 0 ] .
332
- trim ( ) == repeater ;
332
+ split ( '=' ) [ 0 ] . trim ( ) == repeater ;
333
333
} else {
334
334
return ngRepeat . indexOf ( repeater ) != - 1 ;
335
335
}
0 commit comments