feat: ability to open search result in new tab with middle-click (#2919)
This commit is contained in:
		
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							a7b9be3bf7
						
					
				
				
					commit
					e3fd967ad7
				
			| @@ -18,7 +18,7 @@ | ||||
|         v-subheader.white--text {{$t('common:header.searchResultsCount', { total: response.totalHits })}} | ||||
|         v-list.search-results-items.radius-7.py-0(two-line, dense) | ||||
|           template(v-for='(item, idx) of results') | ||||
|             v-list-item(@click='goToPage(item)', :key='item.id', :class='idx === cursor ? `highlighted` : ``') | ||||
|             v-list-item(@click='goToPage(item)', @click.middle="goToPageInNewTab(item)", :key='item.id', :class='idx === cursor ? `highlighted` : ``') | ||||
|               v-list-item-avatar(tile) | ||||
|                 img(src='/_assets/svg/icon-selective-highlighting.svg') | ||||
|               v-list-item-content | ||||
| @@ -136,6 +136,9 @@ export default { | ||||
|     }, | ||||
|     goToPage(item) { | ||||
|       window.location.assign(`/${item.locale}/${item.path}`) | ||||
|     }, | ||||
|     goToPageInNewTab(item) { | ||||
|       window.open(`/${item.locale}/${item.path}`, '_blank') | ||||
|     } | ||||
|   }, | ||||
|   apollo: { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user