mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 06:24:22 +00:00
Fixed special click redirection on search suggestion (#125)
This commit is contained in:
parent
6c4cef36f9
commit
18884fb6a1
|
@ -581,7 +581,10 @@ window.WMTypeAhead = function ( appendTo, searchInput ) {
|
|||
|
||||
addEvent( searchEl, 'blur', function ( e ) {
|
||||
clearTypeAhead();
|
||||
forceLinkFollow( e );
|
||||
// Don't interfere with special clicks (e.g. to open in new tab)
|
||||
if ( !( e.which !== 1 || e.altKey || e.ctrlKey || e.shiftKey || e.metaKey ) ) {
|
||||
forceLinkFollow( e );
|
||||
}
|
||||
} );
|
||||
|
||||
return {
|
||||
|
|
Loading…
Reference in a new issue