Skip to content

Commit

Permalink
Built site for duckdb@1.0.0.9000: 2a046fc
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Aug 16, 2024
1 parent 83989ca commit 5288dc9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions pkgdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,11 @@ async function searchFuse(query, callback) {
});
});
})(window.jQuery || window.$)

document.addEventListener('keydown', function(event) {
// Check if the pressed key is '/'
if (event.key === '/') {
event.preventDefault(); // Prevent any default action associated with the '/' key
document.getElementById('search-input').focus(); // Set focus to the search input
}
});
4 changes: 2 additions & 2 deletions pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandoc: 3.1.11
pkgdown: 2.1.0.9000
pkgdown_sha: 1d40a80e6b3564a6d7da0ce467b0a4570aa5665e
pkgdown_sha: 6ecf7666c05a728e6fea07301a07c33a6ffed784
articles: {}
last_built: 2024-08-09T23:32Z
last_built: 2024-08-16T20:33Z
urls:
reference: https://r.duckdb.org/reference
article: https://r.duckdb.org/articles

0 comments on commit 5288dc9

Please sign in to comment.