1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-02-06 22:20:02 +00:00
2012-05-05 22:49:23 +01: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);
}