From: Mark Otto Date: Mon, 27 Apr 2015 21:16:27 +0000 (-0700) Subject: scope anchorjs to immediate children, fixes #16129 X-Git-Tag: v3.3.5~75^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dab6a4f0e3af750f5b1c7b88db1e7d14a15eb8b0;p=thirdparty%2Fbootstrap.git scope anchorjs to immediate children, fixes #16129 --- diff --git a/docs/assets/js/src/application.js b/docs/assets/js/src/application.js index 7d9b226bc6..3a36324155 100644 --- a/docs/assets/js/src/application.js +++ b/docs/assets/js/src/application.js @@ -176,5 +176,5 @@ ;(function () { 'use strict'; - addAnchors('.bs-docs-container h1, .bs-docs-container h2, .bs-docs-container h3, .bs-docs-container h4, .bs-docs-container h5'); + addAnchors('.bs-docs-container > h1, .bs-docs-container > h2, .bs-docs-container > h3, .bs-docs-container > h4, .bs-docs-container > h5'); })();