From: John Du Hart Date: Wed, 24 Aug 2011 21:55:11 +0000 (+0000) Subject: Follow-up r95445, fix for IE6-7 no supporting display-inline. Removes alt attribute... X-Git-Tag: 1.31.0-rc.0~28083 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/membres/fiche.php?a=commitdiff_plain;h=f7953c411289a1cc1ad6aae4f879c8b0f9795ef4;p=lhc%2Fweb%2Fwiklou.git Follow-up r95445, fix for IE6-7 no supporting display-inline. Removes alt attribute left over from using the img tag --- diff --git a/resources/jquery/jquery.spinner.css b/resources/jquery/jquery.spinner.css index 4f33bb4fa2..150a51b41d 100644 --- a/resources/jquery/jquery.spinner.css +++ b/resources/jquery/jquery.spinner.css @@ -5,4 +5,8 @@ width: 20px; display: inline-block; vertical-align: middle; + + /* IE < 8 Hacks */ + zoom: 1; + *display: inline; } \ No newline at end of file diff --git a/resources/jquery/jquery.spinner.js b/resources/jquery/jquery.spinner.js index 01fa8de07c..87e453823a 100644 --- a/resources/jquery/jquery.spinner.js +++ b/resources/jquery/jquery.spinner.js @@ -16,8 +16,7 @@ $.extend( { return $( '
' ).attr( { id: 'mw-spinner-' + id, 'class': 'mw-spinner', - title: '...', - alt: '...' + title: '...' } ); },