diff options
| author | Mark Otto <[email protected]> | 2011-09-12 13:32:58 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-09-12 13:32:58 -0700 |
| commit | 8f5f35e6db79599f8e72b78bbed9ee171c86461f (patch) | |
| tree | b2cea77c83af99e0028d7ab50adee45a4c48f055 /docs/javascript.html | |
| parent | 7af4a4cfa1684eaf0a3d3e822f5a1171424b4295 (diff) | |
| parent | ad87e11f03b4d614a6beea56175289b6a1e576a3 (diff) | |
| download | bootstrap-8f5f35e6db79599f8e72b78bbed9ee171c86461f.tar.xz bootstrap-8f5f35e6db79599f8e72b78bbed9ee171c86461f.zip | |
Merge branch '1.3-wip' of github.com:twitter/bootstrap into 1.3-wip
Diffstat (limited to 'docs/javascript.html')
| -rw-r--r-- | docs/javascript.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/javascript.html b/docs/javascript.html index 6d5cf9517..cd5f8d38f 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -606,9 +606,13 @@ Sunt qui biodiesel mollit officia, fanny pack put a bird on it thundercats seita <a href="#" class="btn danger" rel="popover" title="A Title" data-content="And here's some amazing content. It's very engaging. right?">hover for popover</a> <script> $(function () { - $("a[rel=popover]").popover({ - offset: 10 - }) + $("a[rel=popover]") + .popover({ + offset: 10 + }) + .click(function(e) { + e.preventDefault() + }) }) </script> </div> |
