mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
advanced search: bugfix
- adapt the js to IE needs (do not reduce the search bar when the user click on a select's option) SVN:trunk[5669]
This commit is contained in:
@@ -313,7 +313,7 @@ $(function()
|
||||
oEvent.preventDefault();
|
||||
|
||||
// Prevent toggle on <select>
|
||||
if(oEvent.target.nodeName.toLowerCase() !== 'select')
|
||||
if(oEvent.target.nodeName.toLowerCase() !== 'select' && oEvent.target.nodeName.toLowerCase() !== 'option')
|
||||
{
|
||||
me.element.toggleClass('closed');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user