diff options
| author | Yohn <[email protected]> | 2012-12-23 06:51:46 -0500 |
|---|---|---|
| committer | Yohn <[email protected]> | 2012-12-23 06:51:46 -0500 |
| commit | da0217405f2d40f024bccafd937800b142e6a952 (patch) | |
| tree | d3f4795631ca31a59a50faa0ad3e3b1faf772ba8 /docs/assets/js/application.js | |
| parent | 48211ad9f572504cdfa00273a66d701e62ec291d (diff) | |
| download | bootstrap-da0217405f2d40f024bccafd937800b142e6a952.tar.xz bootstrap-da0217405f2d40f024bccafd937800b142e6a952.zip | |
data-toggle instead of rel for tooltip and popover
Diffstat (limited to 'docs/assets/js/application.js')
| -rw-r--r-- | docs/assets/js/application.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js index ba7767300..cc442ade4 100644 --- a/docs/assets/js/application.js +++ b/docs/assets/js/application.js @@ -43,14 +43,14 @@ // tooltip demo $('.tooltip-demo').tooltip({ - selector: "a[rel=tooltip]" + selector: "a[data-toggle=tooltip]" }) $('.tooltip-test').tooltip() $('.popover-test').popover() // popover demo - $("a[rel=popover]") + $("a[data-toggle=popover]") .popover() .click(function(e) { e.preventDefault() @@ -153,4 +153,4 @@ $.ajaxTransport('jsonpi', function(opts, originalOptions, jqXHR) { } }) -}(window.jQuery)
\ No newline at end of file +}(window.jQuery) |
