mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-13 16:21:07 +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:
parent
64f145ef46
commit
62cb898408
1 changed files with 1 additions and 1 deletions
2
webroot/rsrc/externals/javelin/lib/DOM.js
vendored
2
webroot/rsrc/externals/javelin/lib/DOM.js
vendored
|
@ -980,7 +980,7 @@ JX.install('DOM', {
|
|||
* @return void
|
||||
*/
|
||||
scrollTo : function(node) {
|
||||
JX.DOM._scrollToPosition(0, JX.$V(node).y);
|
||||
JX.DOM.scrollToPosition(0, JX.$V(node).y);
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue