File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/* globals jQuery */
22jQuery . fn . extend ( {
3- getPath : function ( ) {
3+ getPath : function ( ) {
44 "use strict" ;
55 var path ;
66 var node = this ;
@@ -19,7 +19,7 @@ jQuery.fn.extend({
1919 var tag = uniqueTags [ i ] ;
2020 var tagValue = node . attr ( tag ) ;
2121 if ( tagValue && ( tagValue . trim !== '' ) ) {
22- name + = '[' + tag + '=\"' + tagValue + '\"]' ;
22+ name = '[' + tag + '=\"' + tagValue + '\"]' ;
2323 //we've found a unique identifier so we're done
2424 uniqueIdentifierFound = true ;
2525 break ; //exit for loop
Original file line number Diff line number Diff line change 11/* globals jQuery */
22jQuery . fn . extend ( {
3- getPath : function ( ) {
3+ getPath : function ( ) {
44 "use strict" ;
55 var path ;
66 var node = this ;
@@ -19,7 +19,7 @@ jQuery.fn.extend({
1919 var tag = uniqueTags [ i ] ;
2020 var tagValue = node . attr ( tag ) ;
2121 if ( tagValue && ( tagValue . trim !== '' ) ) {
22- name + = '[' + tag + '=\"' + tagValue + '\"]' ;
22+ name = '[' + tag + '=\"' + tagValue + '\"]' ;
2323 //we've found a unique identifier so we're done
2424 uniqueIdentifierFound = true ;
2525 break ; //exit for loop
You can’t perform that action at this time.
0 commit comments