So I have an issue with the documentation for easing. I have looked in the code and have found something that I would like to customize but currently have no knowledge on how to. Here is the function I am calling:
$('.caption').show('scale', { percent: 100, easing: 'customEasing' }, 500);
I looked at the easing function and saw this
easeOutBack: function (x, t, b, c, d, s) {
if (s == undefined) s = 1.70158;
return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;}
Not only does it have a bunch of variables to pass in but it also checks if one of them, s, is undefined. I want to pass in a different value for s but i just don't see how? Does anyone have a broader understanding of the jquery ui and easing and can tell me if there is a way to change that setting without creating a whole customized effect?