mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 17:17:59 +00:00
change api url :3
This commit is contained in:
parent
8f28bc4842
commit
57d19f5326
@ -8,7 +8,7 @@
|
|||||||
@licstart The following is the entire license notice for the
|
@licstart The following is the entire license notice for the
|
||||||
JavaScript code in this page.
|
JavaScript code in this page.
|
||||||
|
|
||||||
Copyright (C) 2024 SudoVanilla
|
Copyright (C) 2024 Poke Project
|
||||||
|
|
||||||
The JavaScript code in this page is free software: you can
|
The JavaScript code in this page is free software: you can
|
||||||
redistribute it and/or modify it under the terms of the GNU
|
redistribute it and/or modify it under the terms of the GNU
|
||||||
@ -47,7 +47,7 @@ document.querySelector('input[type="search"]').addEventListener('input', functio
|
|||||||
function GetResults() {
|
function GetResults() {
|
||||||
var SearchValue = document.querySelector('input[type="search"]').value
|
var SearchValue = document.querySelector('input[type="search"]').value
|
||||||
var YouTubeSuggestions = document.querySelector('.suggestions')
|
var YouTubeSuggestions = document.querySelector('.suggestions')
|
||||||
fetch(`https://yt.sudovanilla.org/api/v1/search/suggestions?q=${SearchValue}`)
|
fetch(window.location.origin + `/api/improving-poke/getsugesstions?q=${SearchValue}`)
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {YouTubeSuggestions.innerHTML = ListOfSuggestionsYT(data)})
|
.then(data => {YouTubeSuggestions.innerHTML = ListOfSuggestionsYT(data)})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user