<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://eurovision.jobogamer.xyz/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3AGadget-search-new-tab.js</id>
	<title>MediaWiki:Gadget-search-new-tab.js - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://eurovision.jobogamer.xyz/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3AGadget-search-new-tab.js"/>
	<link rel="alternate" type="text/html" href="https://eurovision.jobogamer.xyz/index.php?title=MediaWiki:Gadget-search-new-tab.js&amp;action=history"/>
	<updated>2026-06-11T01:28:30Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://eurovision.jobogamer.xyz/index.php?title=MediaWiki:Gadget-search-new-tab.js&amp;diff=25&amp;oldid=prev</id>
		<title>Alfie: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://eurovision.jobogamer.xyz/index.php?title=MediaWiki:Gadget-search-new-tab.js&amp;diff=25&amp;oldid=prev"/>
		<updated>2026-03-19T09:58:24Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 05:58, 19 March 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Alfie</name></author>
	</entry>
	<entry>
		<id>https://eurovision.jobogamer.xyz/index.php?title=MediaWiki:Gadget-search-new-tab.js&amp;diff=24&amp;oldid=prev</id>
		<title>en&gt;Pppery: Per edit request on talk</title>
		<link rel="alternate" type="text/html" href="https://eurovision.jobogamer.xyz/index.php?title=MediaWiki:Gadget-search-new-tab.js&amp;diff=24&amp;oldid=prev"/>
		<updated>2024-01-28T21:24:54Z</updated>

		<summary type="html">&lt;p&gt;Per edit request on talk&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;/* JSHint-valid */&lt;br /&gt;
/* globals $:false */&lt;br /&gt;
$(function() {&lt;br /&gt;
	// Special:Search for all skins.&lt;br /&gt;
	$(&amp;#039;#powersearch, #search&amp;#039;).on(&amp;#039;keydown&amp;#039;, function(e) {&lt;br /&gt;
		$(this).prop(&amp;#039;target&amp;#039;, e.ctrlKey || e.metaKey ? &amp;#039;_blank&amp;#039; : &amp;#039;&amp;#039;);&lt;br /&gt;
	});&lt;br /&gt;
&lt;br /&gt;
	// CodexTypeaheadSearch header search [only on Vector (2022)].&lt;br /&gt;
	$(&amp;#039;#p-search&amp;#039;).on(&amp;#039;keydown&amp;#039;, &amp;#039;.cdx-typeahead-search #searchform&amp;#039;, function(e) {&lt;br /&gt;
		if ((e.ctrlKey || e.metaKey) &amp;amp;&amp;amp; (e.keyCode == 13 || e.keyCode == 10)) {&lt;br /&gt;
			var URI = $(this).find(&amp;#039;.cdx-menu-item--selected a.cdx-menu-item__content&amp;#039;).prop(&amp;#039;href&amp;#039;);&lt;br /&gt;
			if (URI != undefined) {&lt;br /&gt;
				window.open(URI, &amp;#039;_blank&amp;#039;);&lt;br /&gt;
				return false;&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
	});&lt;br /&gt;
&lt;br /&gt;
	// Header/Side search on other skins [no auto suggest nav on MinervaNeue].&lt;br /&gt;
	// Search box [auto suggest on Vector legacy (2010), MonoBook, Timeless].&lt;br /&gt;
	$(&amp;#039;div:not(.cdx-typeahead-search) #searchform #searchInput, .searchbox .mw-searchInput&amp;#039;).on(&amp;#039;keydown&amp;#039;, function(e) {&lt;br /&gt;
		if ((e.ctrlKey || e.metaKey) &amp;amp;&amp;amp; (e.keyCode == 13 || e.keyCode == 10)) {&lt;br /&gt;
			if ($(this).data(&amp;#039;suggestionsContext&amp;#039;) != undefined) {&lt;br /&gt;
				var selectedIndex = $(this).data(&amp;#039;suggestionsContext&amp;#039;).config.suggestions.indexOf($(this).val());&lt;br /&gt;
				if (selectedIndex != -1) {&lt;br /&gt;
					var URI = $(&amp;#039;.suggestions-results a:nth-child(&amp;#039; + (selectedIndex + 1) + &amp;#039;)&amp;#039;).prop(&amp;#039;href&amp;#039;);&lt;br /&gt;
					if (URI != undefined) {&lt;br /&gt;
						window.open(URI, &amp;#039;_blank&amp;#039;);&lt;br /&gt;
						$(this).trigger(&amp;#039;blur&amp;#039;);&lt;br /&gt;
					}&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
	});&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>en&gt;Pppery</name></author>
	</entry>
</feed>