mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Fix javascript error on serachbox
Remove overlay option from addressbook
This commit is contained in:
parent
794a2082f2
commit
45e7142b09
@ -239,8 +239,7 @@ class addressbook_ui extends addressbook_bo
|
||||
'is_parent' => 'org_count',
|
||||
'parent_id' => 'parent_id',
|
||||
'favorites' => true,
|
||||
'placeholder_actions' => array('add'),
|
||||
'searchbox' => array('overlay' => true)
|
||||
'placeholder_actions' => array('add')
|
||||
);
|
||||
|
||||
if ($do_email)
|
||||
|
@ -483,7 +483,7 @@ var et2_searchbox = et2_textbox.extend(
|
||||
this.search.input.on({
|
||||
keyup:function(event)
|
||||
{
|
||||
self.clear.toggle(self.get_value() !='' || !this.options.fix);
|
||||
self.clear.toggle(self.get_value() !='' || !self.options.fix);
|
||||
if(event.which == 27) // Escape
|
||||
{
|
||||
// Excape clears search
|
||||
|
Loading…
Reference in New Issue
Block a user