Custom easing functions aren't used
JasonStorey opened this issue · comments
Jason S commented
The Readme says a custom easing function can be passed in the config object, but it doesn't seem to get used.
Checked the source and I don't see anything that could support a custom easing function.
Am I going mad?
Here is my example.
var svg = new Walkway({
selector: '#my-svg',
duration: 1000,
easing: function(t) {
console.log('never gets called');
return t;
}
});
Connor Atherton commented
@JasonStorey Thanks for bringing this bug to my attention. It's fixed now.