Open whatisaphone opened 8 years ago
Keyboard handling is borked on pages with more than one datepick control. There's a $() call which isn't scoped properly because inst.div is undefined for inline datepickers.
$()
inst.div
I fixed it by changing the following code on line 1508:
plugin.selectDate(elem, $('a.' + inst.options.renderer.highlightedClass, inst.div)[0]);
to this:
plugin.selectDate(elem, $('a.' + inst.options.renderer.highlightedClass, inst.elem)[0]);
Keyboard handling is borked on pages with more than one datepick control. There's a
$()
call which isn't scoped properly becauseinst.div
is undefined for inline datepickers.I fixed it by changing the following code on line 1508:
to this: