fixed typo in propExists. thx @johnbender

This commit is contained in:
scottjehl 2010-11-22 15:48:14 -05:00
parent d61ea68bfd
commit 3cb0e3c2d0

View file

@ -19,7 +19,7 @@ function propExists( prop ){
var uc_prop = prop.charAt(0).toUpperCase() + prop.substr(1),
props = (prop + ' ' + vendors.join(uc_prop + ' ') + uc_prop).split(' ');
for(var v in props){
if( fbCSS[ v ] !== undefined ){
if( fbCSS[ props[v] ] !== undefined ){
return true;
}
}