r75600 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r75599
|
r75600
|
r75601
>
Date:
00:03, 28 October 2010
Author:
hartman
Status:
deferred
Tags:
Comment:
Removed source_wrap span around embed textarea. Was not being used for anything. Switch textarea from height:15px to rows=1.
Modified paths:
/branches/MwEmbedStandAlone/modules/EmbedPlayer/skins/mw.PlayerControlBuilder.js
(modified) (
history
)
Diff
[
purge
]
Index: branches/MwEmbedStandAlone/modules/EmbedPlayer/skins/mw.PlayerControlBuilder.js
—
—
@@ -1144,15 +1144,12 @@
1145
1145
1146
1146
$shareInterface.append(
1147
1147
1148
- $j('<span />')
1149
- .addClass( 'source_wrap' )
1150
- .html(
1151
- $j( '<textarea />' )
1152
- .html( embed_code )
1153
- .click( function() {
1154
- $j( this ).select();
1155
- })
1156
- ),
1148
+ $j( '<textarea />' )
1149
+ .attr( 'rows', 1 )
1150
+ .html( embed_code )
1151
+ .click( function() {
1152
+ $j( this ).select();
1153
+ }),
1157
1154
1158
1155
$j('<br />'),
1159
1156
$j('<br />'),
Follow-up revisions
Revision
Commit summary
Author
Date
r75601
Follow up to
r75600
hartman
00:04, 28 October 2010
Status & tagging log
19:31, 21 November 2010
Reedy
(
talk
|
contribs
)
changed the
status
of r75600
[
removed:
new
added:
deferred]