Baremetrics / calendar

Date range picker for Baremetrics
MIT License
680 stars 79 forks source link

Fixes https://github.com/Baremetrics/calendar/issues/92 (close calendar on click outside) #93

Closed shai126 closed 5 years ago

shai126 commented 5 years ago

Fixes https://github.com/Baremetrics/calendar/issues/92

Swaps out .parents(), which only takes a string selector (not a DOM/jQuery element as is being used in the existing code) for .closest(), which can take an element too.

Since .closest() includes own element instead of just ancestors, we require a .parent() call first to "step up" 1 level in the tree before traversing.