r55243 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r55242‎ | r55243 | r55244 >
Date:17:52, 18 August 2009
Author:werdna
Status:deferred
Tags:
Comment:
Animatedly scroll to just above the top of the comment field when clicking the reply button
Modified paths:
  • /trunk/extensions/LiquidThreads/lqt.js (modified) (history)

Diff [purge]

Index: trunk/extensions/LiquidThreads/lqt.js
@@ -52,6 +52,12 @@
5353 cancelButton.click( liquidThreads.cancelEdit );
5454
5555 $j(container).find('#wpTextbox1')[0].rows = 10;
 56+
 57+ // Scroll to the textbox
 58+ var targetOffset = $j(container).find('#wpTextbox1').offset().top;
 59+ // Buffer at the top, roughly enough to see the heading and one line
 60+ targetOffset -= 100;
 61+ $j('html,body').animate({scrollTop: targetOffset}, 'slow');
5662 } );
5763 },
5864

Status & tagging log