mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-15 10:05:40 +02:00
Update search.js
This commit is contained in:
@@ -44,13 +44,16 @@
|
|||||||
})
|
})
|
||||||
|
|
||||||
function hashSearch() {
|
function hashSearch() {
|
||||||
if (window.location.hash && window.location.hash.indexOf('#search=') === 0) {
|
const SEARCH_WORD = '#search='
|
||||||
search.input.autocomplete.setVal(window.location.hash.slice(8))
|
|
||||||
|
if (window.location.hash && window.location.hash.startsWith(SEARCH_WORD)) {
|
||||||
|
search.input.autocomplete.setVal(window.location.hash.slice(SEARCH_WORD.length))
|
||||||
search.input.autocomplete.open()
|
search.input.autocomplete.open()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hashSearch()
|
hashSearch()
|
||||||
|
|
||||||
// For the nerds: search by changing the url hash
|
// For the nerds: search by changing the url hash
|
||||||
window.addEventListener('hashchange', hashSearch, false)
|
window.addEventListener('hashchange', hashSearch, false)
|
||||||
})()
|
})()
|
||||||
|
Reference in New Issue
Block a user