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',
|
'is_parent' => 'org_count',
|
||||||
'parent_id' => 'parent_id',
|
'parent_id' => 'parent_id',
|
||||||
'favorites' => true,
|
'favorites' => true,
|
||||||
'placeholder_actions' => array('add'),
|
'placeholder_actions' => array('add')
|
||||||
'searchbox' => array('overlay' => true)
|
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($do_email)
|
if ($do_email)
|
||||||
|
@ -483,7 +483,7 @@ var et2_searchbox = et2_textbox.extend(
|
|||||||
this.search.input.on({
|
this.search.input.on({
|
||||||
keyup:function(event)
|
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
|
if(event.which == 27) // Escape
|
||||||
{
|
{
|
||||||
// Excape clears search
|
// Excape clears search
|
||||||
|
Loading…
Reference in New Issue
Block a user