| 230 | | if ( wrapHeight && $window.scrollTop() > wrapHeight ) { |
| | 234 | if ( iframeHeight > textareaHeight && ( windowPos + heights.windowHeight ) > ( textareaHeight + $textEditor.offset().top ) ) { |
| | 235 | scroll = iframeHeight - textareaHeight - 1; |
| | 236 | topPos = $textEditor.parent().offset().top - heights.toolsHeight - heights.adminBarHeight; |
| | 237 | |
| | 238 | if ( windowPos - scroll < topPos ) { |
| | 239 | window.scrollTo( window.pageXOffset, topPos ); |
| | 240 | } else { |
| | 241 | window.scrollBy( 0, -scroll ); |
| | 242 | } |
| | 243 | |
| | 244 | adjust(); |
| | 245 | window.scrollBy( 0, 1 ); |
| | 246 | } else if ( wrapHeight && windowPos > wrapHeight ) { |