summaryrefslogtreecommitdiffstats
path: root/doc/global/template/scripts/extras.js
diff options
context:
space:
mode:
Diffstat (limited to 'doc/global/template/scripts/extras.js')
-rw-r--r--doc/global/template/scripts/extras.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/global/template/scripts/extras.js b/doc/global/template/scripts/extras.js
index cb1102d493..409215f2d8 100644
--- a/doc/global/template/scripts/extras.js
+++ b/doc/global/template/scripts/extras.js
@@ -1,13 +1,14 @@
var vOffset = 65;
$(function () {
- $('a[href*=#]:not([href=#])').on('click', function () {
+ $('a[href*=#]:not([href=#])').on('click', function (e) {
+ if (e.which == 2)
+ return true;
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
setTimeout(function () {
$('html, body').animate({scrollTop: target.offset().top - vOffset}, 50);}, 50);
- // return false;
}
});
});