bug #19334: textarea jumps when editing longer articles in IE8

This commit is contained in:
Jack Phoenix 2010-02-09 19:51:17 +00:00
parent c1638e1236
commit e30edaf053
3 changed files with 12 additions and 0 deletions

View file

@ -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 ==

View file

@ -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 ) {

View file

@ -0,0 +1,9 @@
/**
* Fixes textarea scrolling bug (bug #19334)
*/
#wpTextbox1 {
height: 390px;
width: 500px;
min-width: 100%;
max-width: 100%;
}