Index: trunk/phase3/resources/jquery/jquery.client.js |
— | — | @@ -169,7 +169,7 @@ |
170 | 170 | var profile = $.client.profile(); |
171 | 171 | var dir = $( 'body' ).is( '.rtl' ) ? 'rtl' : 'ltr'; |
172 | 172 | // Check over each browser condition to determine if we are running in a compatible client |
173 | | - if ( typeof map[dir] !== 'object' || map[dir][profile.name] !== 'object' ) { |
| 173 | + if ( typeof map[dir] !== 'object' || typeof map[dir][profile.name] === 'undefined' ) { |
174 | 174 | // Unknown, so we assume it's working |
175 | 175 | return true; |
176 | 176 | } |