mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
check if quick-add selectbox is alread there, only create it again if not
This commit is contained in:
parent
05765db6ca
commit
3afd9aaa18
@ -432,7 +432,10 @@ egw.extend('links', egw.MODULE_GLOBAL, function() {
|
||||
*/
|
||||
link_quick_add: function(_parent)
|
||||
{
|
||||
var select = jQuery(document.createElement('select'));
|
||||
// check if quick-add selectbox is alread there, only create it again if not
|
||||
if (document.getElementById('quick_add_selectbox')) return;
|
||||
|
||||
var select = jQuery(document.createElement('select')).attr('id', 'quick_add_selectbox');
|
||||
jQuery(typeof _parent == 'string' ? '#'+_parent : _parent).append(select);
|
||||
|
||||
var self = this;
|
||||
|
Loading…
Reference in New Issue
Block a user