Renamed variable, avoid window.name collision

Using a variable called `name` causes the global `window.name` to be reset. Simply renaming the variable prevents this.
This commit is contained in:
Dominic 2012-08-22 23:11:30 -07:00
parent 4c34904f38
commit 601852df87
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;
}