There fd-slider.jsis an error on line 446 of the function in which it tries to call each callback functionfunc.call(inp, cbObj);
The variable is cbObjundefined, so callbacks are not called. I fixed this by updating these few lines, just to determine that var.
for(var i = 0, func; func = callbacks[type][i]; i++) {
var cbObj = null;
func.call(inp, cbObj);
};
I could not find the definition of the callback object anywhere in the code.
source
share