We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b3fa19 commit 8b8c543Copy full SHA for 8b8c543
docs/reference/themes/mongodb/static/js/scripts.js
@@ -17,4 +17,10 @@ jQuery(document).ready(function(){
17
jQuery('[data-toggle="tooltip"]').tooltip();
18
jQuery("body").addClass("hljsCode");
19
hljs.initHighlightingOnLoad();
20
+ var linkRegex = new RegExp('/' + window.location.host + '/');
21
+ jQuery('a').not('[href*="mailto:"]').each(function () {
22
+ if ( ! linkRegex.test(this.href) ) {
23
+ $(this).attr('target', '_blank');
24
+ }
25
+ });
26
});
0 commit comments