mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-05 10:16:57 +00:00
Now we've got scrolling for navigation in classic view
This commit is contained in:
parent
324a87a8a2
commit
e97f778af4
@ -57,7 +57,7 @@ $tw.utils.forceLayout(targetElement);
|
||||
{transform: "none"}
|
||||
]);
|
||||
// Scroll the target element into view
|
||||
$tw.scroller.scrollIntoView(targetElement);
|
||||
$tw.scroller.scrollIntoView(dstRect);
|
||||
};
|
||||
|
||||
ClassicListView.prototype.insert = function(index) {
|
||||
|
@ -31,16 +31,17 @@ Scroller.prototype.cancel = function() {
|
||||
|
||||
/*
|
||||
Smoothly scroll an element back into view if needed
|
||||
element: element or clientrect object
|
||||
*/
|
||||
Scroller.prototype.scrollIntoView = function(element) {
|
||||
var scrollPosition = $tw.utils.getScrollPosition(),
|
||||
elementBounds = element.getBoundingClientRect();
|
||||
var elementBounds = element instanceof HTMLElement ? $tw.utils.getBoundingPageRect(element) : element,
|
||||
scrollPosition = $tw.utils.getScrollPosition();
|
||||
this.cancel();
|
||||
this.startTime = new Date();
|
||||
this.startX = scrollPosition.x;
|
||||
this.startY = scrollPosition.y;
|
||||
this.endX = elementBounds.left + scrollPosition.x;
|
||||
this.endY = elementBounds.top + scrollPosition.y;
|
||||
this.endX = elementBounds.left;
|
||||
this.endY = elementBounds.top;
|
||||
if((this.endX < this.startX) || (this.endX > (this.startX + window.innerWidth)) || (this.endY < this.startY) || (this.endY > (this.startY + window.innerHeight))) {
|
||||
var self = this;
|
||||
this.timerId = window.setInterval(function() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user