r95450 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r95449
|
r95450
|
r95451
>
Date:
21:55, 24 August 2011
Author:
johnduhart
Status:
ok
Tags:
Comment:
Follow-up
r95445
, fix for IE6-7 no supporting display-inline. Removes alt attribute left over from using the img tag
Modified paths:
/trunk/phase3/resources/jquery/jquery.spinner.css
(modified) (
history
)
/trunk/phase3/resources/jquery/jquery.spinner.js
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/resources/jquery/jquery.spinner.css
—
—
@@ -5,4 +5,8 @@
6
6
width: 20px;
7
7
display: inline-block;
8
8
vertical-align: middle;
9
+
10
+ /* IE < 8 Hacks */
11
+ zoom: 1;
12
+ *display: inline;
9
13
}
\ No newline at end of file
Index: trunk/phase3/resources/jquery/jquery.spinner.js
—
—
@@ -16,8 +16,7 @@
17
17
return $( '<div>' ).attr( {
18
18
id: 'mw-spinner-' + id,
19
19
'class': 'mw-spinner',
20
- title: '...',
21
- alt: '...'
20
+ title: '...'
22
21
} );
23
22
},
24
23
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r95445
(
bug 30499
) Create jQuery replacements for injectSpinner and removeSpinner
johnduhart
21:08, 24 August 2011
Status & tagging log
22:10, 24 August 2011
Krinkle
(
talk
|
contribs
)
changed the
status
of r95450
[
removed:
new
added:
ok]