]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
rm dummy href from dismiss-on-next-click popover example; fixes #15277
authorChris Rebert <code@rebertia.com>
Sun, 18 Jan 2015 20:51:47 +0000 (12:51 -0800)
committerChris Rebert <code@rebertia.com>
Sun, 18 Jan 2015 20:51:47 +0000 (12:51 -0800)
docs/_includes/js/popovers.html

index 56d8ce8b1ed88e6d8540e7a0ba4f3905f87962d5..7e96464d6c8f55b4e855f2bf9e7cbe6389e0365b 100644 (file)
@@ -126,10 +126,10 @@ sagittis lacus vel augue laoreet rutrum faucibus.">
     <p>For proper cross-browser and cross-platform behavior, you must use the <code>&lt;a&gt;</code> tag, <i>not</i> the <code>&lt;button&gt;</code> tag, and you also must include a <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes#tabindex"><code>tabindex</code></a> attribute.</p>
   </div>
   <div class="bs-example" style="padding-bottom: 24px;">
-    <a href="#" tabindex="0" class="btn btn-lg btn-danger bs-docs-popover" role="button" data-toggle="popover" data-trigger="focus" title="Dismissible popover" data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>
+    <a tabindex="0" class="btn btn-lg btn-danger bs-docs-popover" role="button" data-toggle="popover" data-trigger="focus" title="Dismissible popover" data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>
   </div>
 {% highlight html %}
-<a href="#" tabindex="0" class="btn btn-lg btn-danger" role="button" data-toggle="popover" data-trigger="focus" title="Dismissible popover" data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>
+<a tabindex="0" class="btn btn-lg btn-danger" role="button" data-toggle="popover" data-trigger="focus" title="Dismissible popover" data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>
 {% endhighlight %}