mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-13 04:52:23 +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:
parent
66e1f8cdab
commit
27fa029537
Notes:
sideshowbarker
2024-07-17 04:01:41 +09:00
Author: https://github.com/trflynn89
Commit: 27fa029537
Pull-request: https://github.com/SerenityOS/serenity/pull/20438
Reviewed-by: https://github.com/AtkinsSJ
1 changed files with 0 additions and 4 deletions
|
@ -46,7 +46,6 @@
|
||||||
<div id="search-buttons">
|
<div id="search-buttons">
|
||||||
<button type="button" onclick="search('bing')">Bing</button>
|
<button type="button" onclick="search('bing')">Bing</button>
|
||||||
<button type="button" onclick="search('duckduckgo')">DuckDuckGo</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('github')">GitHub</button>
|
||||||
<button type="button" onclick="search('google')">Google</button>
|
<button type="button" onclick="search('google')">Google</button>
|
||||||
<button type="button" onclick="search('wiby')">Wiby</button>
|
<button type="button" onclick="search('wiby')">Wiby</button>
|
||||||
|
@ -78,9 +77,6 @@
|
||||||
} else if (searchEngine == "duckduckgo") {
|
} else if (searchEngine == "duckduckgo") {
|
||||||
url = new URL("https://duckduckgo.com");
|
url = new URL("https://duckduckgo.com");
|
||||||
url.searchParams.set("q", query);
|
url.searchParams.set("q", query);
|
||||||
} else if (searchEngine == "frogfind") {
|
|
||||||
url = new URL("https://frogfind.com");
|
|
||||||
url.searchParams.set("q", query);
|
|
||||||
} else if (searchEngine == "github") {
|
} else if (searchEngine == "github") {
|
||||||
url = new URL("https://github.com/search");
|
url = new URL("https://github.com/search");
|
||||||
url.searchParams.set("q", query);
|
url.searchParams.set("q", query);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue