bug #19334: textarea jumps when editing longer articles in IE8
This commit is contained in:
parent
c1638e1236
commit
e30edaf053
3 changed files with 12 additions and 0 deletions
|
|
@ -747,6 +747,7 @@ comment from another wiki.
|
|||
$wgExtensionCredits is no longer sorted with sort() but rather used
|
||||
as it appears in extensions as was the case before r30117 where it
|
||||
was unintentionally sorted along with other fields.
|
||||
* (bug 19334) Textarea no longer jumps when editing longer articles in IE8
|
||||
|
||||
== API changes in 1.16 ==
|
||||
|
||||
|
|
|
|||
|
|
@ -397,6 +397,8 @@ class EditPage {
|
|||
$wgOut->includeJQuery();
|
||||
$wgOut->addScriptFile( 'preview.js' );
|
||||
}
|
||||
// Bug #19334: textarea jumps when editing articles in IE8
|
||||
$wgOut->addStyle( 'common/IE80Fixes.css', 'screen', 'IE 8' );
|
||||
|
||||
$permErrors = $this->getEditPermissionErrors();
|
||||
if ( $permErrors ) {
|
||||
|
|
|
|||
9
skins/common/IE80Fixes.css
Normal file
9
skins/common/IE80Fixes.css
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
/**
|
||||
* Fixes textarea scrolling bug (bug #19334)
|
||||
*/
|
||||
#wpTextbox1 {
|
||||
height: 390px;
|
||||
width: 500px;
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
Loading…
Reference in a new issue