Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
fixed an error in the array reference that was causing support tests …
Browse files Browse the repository at this point in the history
…to not test properties as they should.
  • Loading branch information
scottjehl committed Aug 7, 2011
1 parent 38368b6 commit 0253e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.mobile.support.js
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 0253e67

Please sign in to comment.