$sengine was not actually used
Had declared search engine in variable, but the variable wasn't actually used.
This commit is contained in:
parent
41c22ed218
commit
190954b550
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ function search(text) {
|
|||
else
|
||||
window.location = "https://" + text;
|
||||
} else {
|
||||
window.location = "https://www.google.com/search?q=" + text;
|
||||
window.location = sengine + text;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue