mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
fixed typo in propExists. thx @johnbender
This commit is contained in:
parent
d61ea68bfd
commit
3cb0e3c2d0
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue