r60079 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r60078‎ | r60079 | r60080 >
Date:16:23, 15 December 2009
Author:werdna
Status:deferred
Tags:
Comment:
LiquidThreads: Fix offset detection for scrolling to the edit box
Modified paths:
  • /trunk/extensions/LiquidThreads/lqt.js (modified) (history)

Diff [purge]

Index: trunk/extensions/LiquidThreads/lqt.js
@@ -114,14 +114,10 @@
115115
116116 var finishShow = function() {
117117 // Scroll to the textbox
118 - var targetOffset = $j(container).find('#wpTextbox1').offset().top;
 118+ var targetOffset = $j(container).offset().top;
119119 var windowHeight = $j(window).height();
120120 var editBoxHeight = $j(container).height();
121121
122 - if (!targetOffset) {
123 - targetOffset = $j(container).offset().top;
124 - }
125 -
126122 var scrollOffset = targetOffset - windowHeight + editBoxHeight;
127123
128124 $j('html,body').animate({scrollTop: scrollOffset}, 'slow');

Status & tagging log