From: Trevor Parscal Date: Tue, 11 Jan 2011 23:15:26 +0000 (+0000) Subject: Fixed logic error - all tests were passing... :( X-Git-Tag: 1.31.0-rc.0~32611 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=534f6abd6b4c6b525ee03ec449d38da64fc36b62;p=lhc%2Fweb%2Fwiklou.git Fixed logic error - all tests were passing... :( --- diff --git a/resources/jquery/jquery.client.js b/resources/jquery/jquery.client.js index 8b96b836b0..38aa61552b 100644 --- a/resources/jquery/jquery.client.js +++ b/resources/jquery/jquery.client.js @@ -199,5 +199,5 @@ $( document ).ready( function() { .addClass( 'client-' + profile.name ) .addClass( 'client-' + profile.name + '-' + profile.versionBase ) .addClass( 'client-' + profile.layout ) - .addClass( 'client-' + profile.platform ) + .addClass( 'client-' + profile.platform ); } );