You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The description states "Load jQuery UI for datepicker support", this suggests that if I don't use datepicker, then I don't need jquery-ui. Unfortunatelly this is not the case, as in init it uses e.datepicker, but it only checks if jQuery.ui exists:
jQuery.ui && (e.datepicker._checkOffset
We have an optimized (not full) version of the datepicker for autocomplete, that doesn't include datepicker, so the code fails. An easy fix for this in that particular place is:
but I can imagine that the same problem can appear in another places. As many people now download only the modules they really use in jquery-ui I would consider this to be a bug.
The text was updated successfully, but these errors were encountered:
The description states "Load jQuery UI for datepicker support", this suggests that if I don't use datepicker, then I don't need jquery-ui. Unfortunatelly this is not the case, as in init it uses e.datepicker, but it only checks if jQuery.ui exists:
jQuery.ui && (e.datepicker._checkOffset
We have an optimized (not full) version of the datepicker for autocomplete, that doesn't include datepicker, so the code fails. An easy fix for this in that particular place is:
jQuery.ui && e.datepicker && (e.datepicker._checkOffset
but I can imagine that the same problem can appear in another places. As many people now download only the modules they really use in jquery-ui I would consider this to be a bug.
The text was updated successfully, but these errors were encountered: