Merge pull request #1411 from dominic-p/master

Rename Variable in front-end js
This commit is contained in:
Mike Jolley 2012-08-23 02:56:57 -07:00
commit badb015005
1 changed files with 3 additions and 3 deletions

View File

@ -308,9 +308,9 @@ jQuery(document).ready(function($) {
// Check if two arrays of attributes match
function variations_match( attrs1, attrs2 ) {
var match = true;
for ( name in attrs1 ) {
var val1 = attrs1[ name ];
var val2 = attrs2[ name ];
for ( attr_name in attrs1 ) {
var val1 = attrs1[ attr_name ];
var val2 = attrs2[ attr_name ];
if ( val1 !== undefined && val2 !== undefined && val1.length != 0 && val2.length != 0 && val1 != val2 ) {
match = false;
}