mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-24 08:14:33 +00:00
Workaround for a scrolling bug in IE8
Bug: 61908 Change-Id: I69dbfa267b26916628181553b213f05add909c99
This commit is contained in:
parent
f5b2b18a01
commit
895f737b87
|
@ -480,6 +480,13 @@ if ( !context || typeof context === 'undefined' ) {
|
|||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Workaround for a scrolling bug in IE8 (bug 61908)
|
||||
*/
|
||||
if ( $.client.profile().name === 'msie' ) {
|
||||
context.$textarea.css( 'height', context.$textarea.height() );
|
||||
}
|
||||
|
||||
/**
|
||||
* Base UI Construction
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue