summaryrefslogtreecommitdiff
path: root/support/jsdoc/jsdoc-custom.js
diff options
context:
space:
mode:
Diffstat (limited to 'support/jsdoc/jsdoc-custom.js')
-rw-r--r--support/jsdoc/jsdoc-custom.js26
1 files changed, 5 insertions, 21 deletions
diff --git a/support/jsdoc/jsdoc-custom.js b/support/jsdoc/jsdoc-custom.js
index 2b7871f..5072fb7 100644
--- a/support/jsdoc/jsdoc-custom.js
+++ b/support/jsdoc/jsdoc-custom.js
@@ -1,15 +1,4 @@
-// https://github.com/twbs/bootstrap/issues/1768
-function shiftWindow() {
- scrollBy(0, -50);
-}
-
-function fixAnchorPosition() {
- if (location.hash) {
- shiftWindow();
- }
-}
-
-function initSearchBar() {
+$(function initSearchBar() {
var methodNames = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.whitespace,
queryTokenizer: Bloodhound.tokenizers.whitespace,
@@ -40,13 +29,8 @@ function initSearchBar() {
templates: {
header: '<h3 class="search-bar-header">Source Files</h3>'
}
+ }).on('typeahead:select', function(ev, suggestion) {
+ var $el = document.getElementById('.' + suggestion)
+ $('html, body').animate({ scrollTop: $el.offsetTop }, 500);
});
-}
-
-function init() {
- fixAnchorPosition();
- window.addEventListener("hashchange", shiftWindow, false);
- initSearchBar();
-}
-
-$(init);
+});