2019-05-22 01:22:58 +00:00
|
|
|
// Search button function
|
2019-08-10 14:39:23 +00:00
|
|
|
document.getElementById('searchClick').addEventListener('click', () => {
|
2019-06-07 09:09:51 +00:00
|
|
|
searchForm.submit()
|
|
|
|
}, false)
|
2019-06-01 09:21:51 +00:00
|
|
|
|
2019-08-10 14:39:23 +00:00
|
|
|
document.getElementById('searchClickMob').addEventListener('click', () => {
|
|
|
|
searchFormMob.submit()
|
2019-06-01 09:21:51 +00:00
|
|
|
}, false)
|
2020-03-06 08:47:37 +00:00
|
|
|
|
|
|
|
// Use duckduckgo's onion address when the site is accessed via .onion
|
|
|
|
if (document.location.hostname.endsWith('.onion')) {
|
|
|
|
const searchForms = document.querySelectorAll('form#searchForm, form#searchFormMob')
|
|
|
|
|
|
|
|
searchForms.forEach((form) => {
|
|
|
|
form.setAttribute('action', 'https://3g2upl4pq6kufc4m.onion/')
|
|
|
|
})
|
|
|
|
}
|