1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-02-05 21:50:02 +00:00
2012-11-16 21:20:27 +00:00

11 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);
}