mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-25 00:24:44 +00:00
fixed an error in the array reference that was causing support tests to not test properties as they should.
This commit is contained in:
parent
38368b6010
commit
0253e67fbb
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ function propExists( prop ) {
|
|||
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