mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-24 03:00:12 +01:00
Fix #1036. We remove all autocomplete DIVs after updates.
This commit is contained in:
parent
110d3daf95
commit
710e447e1c
1 changed files with 4 additions and 0 deletions
|
|
@ -200,6 +200,10 @@ function project_defaults(){
|
|||
}
|
||||
|
||||
function enable_rich_interaction(){
|
||||
/* fix for #1036 where closing a edit form before the autocomplete was filled
|
||||
* resulted in a dropdown box that could not be removed. We remove all
|
||||
* autocomplete boxes the hard way */
|
||||
$('.ac_results').remove();
|
||||
$('input.Date').datepicker({'dateFormat': dateFormat, 'firstDay': weekStart});
|
||||
/* Autocomplete */
|
||||
$('input[name=context_name]').autocomplete(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue