mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-03 05:48:42 +03:00
23 lines
664 B
JavaScript
23 lines
664 B
JavaScript
|
|
(function() {
|
|
|
|
var doc_version = document.querySelector('meta[name="doc_version"]').getAttribute('content');
|
|
|
|
// Initialize the Algolia search widget
|
|
docsearch({
|
|
apiKey: 'c39cb614363a2a156811478bc2d0573b',
|
|
indexName: 'godotengine',
|
|
inputSelector: '#rtd-search-form input[type=text]',
|
|
algoliaOptions: {
|
|
facetFilters: ["version:" + (doc_version || 'stable')]
|
|
},
|
|
});
|
|
|
|
window.addEventListener('keydown', function(event) {
|
|
if (event.key === '/') {
|
|
document.querySelector('#rtd-search-form input[type=text]').focus();
|
|
event.preventDefault();
|
|
}
|
|
})
|
|
})();
|