1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:27:43 +00:00

Base: Remove FrogFind from the new tab page

Search queries no longer work for this engine, and FireFox even issues a
security warning on their home page.
This commit is contained in:
Timothy Flynn 2023-08-08 15:46:53 -04:00 committed by Andreas Kling
parent 66e1f8cdab
commit 27fa029537

View file

@ -46,7 +46,6 @@
<div id="search-buttons">
<button type="button" onclick="search('bing')">Bing</button>
<button type="button" onclick="search('duckduckgo')">DuckDuckGo</button>
<button type="button" onclick="search('frogfind')">FrogFind</button>
<button type="button" onclick="search('github')">GitHub</button>
<button type="button" onclick="search('google')">Google</button>
<button type="button" onclick="search('wiby')">Wiby</button>
@ -78,9 +77,6 @@
} else if (searchEngine == "duckduckgo") {
url = new URL("https://duckduckgo.com");
url.searchParams.set("q", query);
} else if (searchEngine == "frogfind") {
url = new URL("https://frogfind.com");
url.searchParams.set("q", query);
} else if (searchEngine == "github") {
url = new URL("https://github.com/search");
url.searchParams.set("q", query);