// product page js fix

This commit is contained in:
tDidierjean
2012-05-21 16:25:22 +00:00
parent 0629b69133
commit f480ea3c6f
+5 -3
View File
@@ -44,9 +44,11 @@ function populate_attrs()
var list = attrs[number];
attr_name.options.length = 0;
for(i = 0; i < list.length; i += 2)
attr_name.options[i / 2] = new Option(list[i + 1], list[i]);
if (typeof list !== 'undefined')
{
for(i = 0; i < list.length; i += 2)
attr_name.options[i / 2] = new Option(list[i + 1], list[i]);
}
}
function check_impact()