Fixed issue with bootstrap dropdown closing the calendar
This commit is contained in:
parent
7617ae2565
commit
f56c626315
2 changed files with 9 additions and 0 deletions
|
@ -53,3 +53,8 @@ class @DueDateSelect
|
|||
defaultDate: $("input[name='#{fieldName}']").val()
|
||||
altField: "input[name='#{fieldName}']"
|
||||
)
|
||||
|
||||
$(document)
|
||||
.off 'click', '.ui-datepicker-header a'
|
||||
.on 'click', '.ui-datepicker-header a', (e) ->
|
||||
e.stopImmediatePropagation()
|
||||
|
|
|
@ -404,6 +404,10 @@
|
|||
}
|
||||
|
||||
.dropdown-menu-due-date {
|
||||
.dropdown-content {
|
||||
max-height: 230px;
|
||||
}
|
||||
|
||||
.ui-widget {
|
||||
table {
|
||||
margin: 0;
|
||||
|
|
Loading…
Reference in a new issue