Depth
I am having trouble with a header and a footer that have position: fixed. When cta grows "VER LISTA DE PASSOS" , it grows behind the header, even changing z-index etc.
Seems that the animation is not happening above all elements.

When I insert something like: dummy.style.setProperty('z-index', '999999', 'important');
It does work correctly.
Maybe as an option when calling cta? options.dummyIndex (...)
Seems like good idea. Will look into this. Thanks.
I was about to fork the project to fix this (to use with Bower), but a simple CSS override can fix the issue without messing with the script:
body > div:last-child {
z-index: 999 !important;
}
However, this will probably break down if you have other scripts appending DIVs before the closing
tag.
+1 for z Index option or something similar
Is this project abandoned?
Will take this up this weekend.
any update on this one?