r80043 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r80042‎ | r80043 | r80044 >
Date:21:55, 11 January 2011
Author:tparscal
Status:ok
Tags:
Comment:
Fixed logic error that caused the test to always pass.
Modified paths:
  • /trunk/phase3/resources/jquery/jquery.client.js (modified) (history)

Diff [purge]

Index: trunk/phase3/resources/jquery/jquery.client.js
@@ -169,7 +169,7 @@
170170 var profile = $.client.profile();
171171 var dir = $( 'body' ).is( '.rtl' ) ? 'rtl' : 'ltr';
172172 // 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' ) {
174174 // Unknown, so we assume it's working
175175 return true;
176176 }

Follow-up revisions

RevisionCommit summaryAuthorDate
r801751.17: MFT r79960, r80034, r80036, r80043, r80044, r80050, r80053, r80074, r80...catrope17:13, 13 January 2011

Status & tagging log