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:03 +00:00
parent 51f6ee7f62
commit af8e1022e1

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);
}
},