From f7953c411289a1cc1ad6aae4f879c8b0f9795ef4 Mon Sep 17 00:00:00 2001 From: John Du Hart Date: Wed, 24 Aug 2011 21:55:11 +0000 Subject: [PATCH] Follow-up r95445, fix for IE6-7 no supporting display-inline. Removes alt attribute left over from using the img tag --- resources/jquery/jquery.spinner.css | 4 ++++ resources/jquery/jquery.spinner.js | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) 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: '...' } ); }, -- 2.20.1