mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-28 04:41:57 -08:00
There are still some whitespace and attribute ordering issues, but the result runs correctly.
10 lines
226 B
JavaScript
Executable file
10 lines
226 B
JavaScript
Executable file
//--
|
|
//-- Scroller animation
|
|
//--
|
|
|
|
function Scroller(targetElement)
|
|
{
|
|
var p = [{style: '-tw-vertScroll', start: findScrollY(), end: ensureVisible(targetElement)}];
|
|
return new Morpher(targetElement,config.animDuration,p);
|
|
}
|
|
|