we have to wait a little, to give browser time to same autocomplete values

This commit is contained in:
Ralf Becker 2015-01-29 18:04:49 +00:00
parent 2eb687775e
commit 8633eb416e

View File

@ -385,7 +385,10 @@ egw.extend('open', egw.MODULE_WND_LOCAL, function(_egw, _wnd)
}
else
{
_wnd.close();
// we have to wait a little, to give browser time to same autocomplete values
_wnd.setTimeout(function() {
_wnd.close();
}, 20);
}
},