1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-28 07:28:20 +01:00

Fix call to scrollToPosition()

Summary: See rPea67a8ab8e58. This was typed wrong and all the things I tested called scrollToPosition() directly.

Test Plan: Quoted a comment.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley, krzysztof.ciebiera

Differential Revision: https://secure.phabricator.com/D11505
This commit is contained in:
epriestley 2015-01-26 09:34:41 -08:00
parent 64f145ef46
commit 62cb898408

View file

@ -980,7 +980,7 @@ JX.install('DOM', {
* @return void * @return void
*/ */
scrollTo : function(node) { scrollTo : function(node) {
JX.DOM._scrollToPosition(0, JX.$V(node).y); JX.DOM.scrollToPosition(0, JX.$V(node).y);
}, },
/** /**