aboutsummaryrefslogtreecommitdiff
path: root/js/tooltip.js
AgeCommit message (Collapse)AuthorFilesLines
2015-03-16v3.3.2 => v3.3.4Chris Rebert1-2/+2
2015-03-03Hiding an uninitialized tooltip/popover no longer initializes it; fixes #15874Chris Rebert1-1/+1
2015-03-03rm semicolon for sake of fat's eccentric tastesChris Rebert1-1/+1
Erratum from #15496
2015-02-26Tooltip: Avoid creating an unnecessary tooltip when `Tooltip#hide` is calledQuentin Spencer-Harper1-2/+2
Fixed performance bug where a tooltip element is created and then immediately destroyed when tooltip.hide() is called and there is no existing tooltip element Resolves #15557 by merging it.
2015-02-25[Ref #15881] Use Explicit Values rather than ChainKevin Kirsche1-5/+5
[Ref #15881] Use Explicit Values for javascript variables rather than chained ones. From https://github.com/twbs/bootstrap/pull/15881#discussion_r25330647
2015-01-28Merge pull request #15496 from twbs/15484-alternativeChris Rebert1-0/+4
Make $(document).tooltip({...}) without a `selector` throw an error
2015-01-27Fix name of Tooltip.replaceArrow() parameterChris Rebert1-3/+3
isHorizontal => isVertical
2015-01-19bump versionsMark Otto1-2/+2
2015-01-16Fix bogus JSCS warning.XhmikosR1-3/+3
2015-01-05window.Document doesn't exist in IE8Chris Rebert1-1/+1
2015-01-05Make $(document).tooltip({...}) without a `selector` throw an errorChris Rebert1-0/+4
Closes #15484
2015-01-01Happy New Year :santa:Zlatan Vasović1-1/+1
2014-12-29Revert "Allow multiple delegated tooltip selectors on a node"Chris Rebert1-10/+4
This reverts commit 1b3237629a316af41945e20837cf3a332798b264. This reverts PR #14189 because it caused major regressions. Fixes #15168. We'll try to revisit #14167's feature request in Bootstrap v4. [skip validator]
2014-11-12bump version to v3.3.1v3.3.1Mark Otto1-2/+2
2014-10-29version bumpMark Otto1-2/+2
2014-10-26Fix tooltip occasionally not hiding when using a hide delayPhil Hughes1-0/+3
Fixes #14375. Closes #14519 by merging it.
2014-10-26Allow multiple delegated tooltip selectors on a nodeAndrew S. Brown1-4/+10
Fixes #14167. Closes #14189 by merging it.
2014-10-22Follow-up to e2cfbd5: Fix spaces in placement calculationHeinrich Fenkart1-4/+4
2014-10-22Fixes tooltip misplacements in scrollable viewports with auto positioningsaranya.r1-4/+4
Fixes #14756. Closes #14767.
2014-09-24tooltip.js: fix alignmentChris Rebert1-1/+1
2014-09-24Use container instead of parent for tooltip/popover auto-placement calcsChris Rebert1-6/+6
Fixes #14561. Big thanks to @wickstargazer. [skip validator]
2014-09-25Tooltip: Rely on `getBoundingClientRect` for `width` and `height`Heinrich Fenkart1-5/+1
Fixes #14553.
2014-09-17Fix tooltip misplacement with "auto top"saranya.r1-1/+1
Fixes #14322. Closes #14581.
2014-09-13Remove unused Tooltip#validate methodHeinrich Fenkart1-8/+0
2014-09-13Correctly selects arrow placement for a tooltipPeter West1-6/+8
Fixes #13696. Fixes #13696. Fixes #14197. Closes #13718.
2014-09-13Properly fire hidden event when tooltip is destroyedHeinrich Fenkart1-2/+6
Fixes #13031.
2014-09-11Merge pull request #14492 from twbs/ie8-getBoundingClientRectHeinrich Fenkart1-0/+4
Handle lack of .width and .height from getBoundingClientRect() in IE8
2014-09-09Make inDom check of tooltip cross document compatibleHeinrich Fenkart1-1/+1
Fixes #14483
2014-09-08Merge pull request #14242 from hnrch02/remove-aria-describedby-laterHeinrich Fenkart1-3/+3
Remove `aria-describedby` attribute later
2014-09-07Handle lack of .width and .height from getBoundingClientRect() in IE8Chris Rebert1-0/+4
Closes #14093 Correction to #14090 Relevant docs: https://developer.mozilla.org/en-US/docs/Web/API/Element.getBoundingClientRect#Browser_compatibility
2014-09-07Merge pull request #14273 from sgonyea/masterJacob1-0/+5
Fix hover-popover/tooltip flickering when mouse re-enters
2014-08-28Fix hover-tooltip flickering when mouse re-entersScott Gonyea1-0/+5
- is(':visible') seems to be the only reliable check, without a refactoring of how hoverState is used - tests need improvement
2014-08-17Assume Element.getBoundingClientRect() exists; Fixes #14093Chris Rebert1-1/+1
[skip validator]
2014-08-04Remove `aria-describedby` attribute laterHeinrich Fenkart1-3/+3
Fixes #14241
2014-08-01Merge pull request #14061 from hnrch02/fix-13656Jacob1-2/+4
Expose transition durations on plugin constructors; closes #13656
2014-07-09Fix IE8 reporting type object for `getBoundingClientRect`Heinrich Fenkart1-1/+1
2014-07-07Expose transition durations on plugin constructors; closes #13656Heinrich Fenkart1-2/+4
2014-07-06refactor/reformat Tooltip.getPosition per @fat's feedbackChris Rebert1-4/+8
2014-07-02possible fix for #14013Chris Rebert1-3/+6
2014-06-26bump to v3.2.0Mark Otto1-2/+2
2014-06-23Revert UMD (#13772 & friends) for now, due to #13812.Chris Rebert1-351/+345
Will hopefully revert this reversion and land a fully-working version of UMD in v3.3.0. Revert "some changes from #13801 - add strict mode back and ==" This reverts commit 2b302f69eea416bc85e7827b7d7a74d49f879662. Revert "Fix regression of #10038 introduced by #13772" This reverts commit e9d6756a1ac76a9db31a41e8e03f663bedc41b70. Revert "MD/CommonJS/Globals #12909" This reverts commit 1c6fa9010daf0d0c21de9e20fe6ac4dba1788d90. Revert "address #13811" This reverts commit f347d7d955bbb17234b8e12c68efae7d516ce62c. Conflicts: js/carousel.js js/collapse.js js/dropdown.js js/modal.js js/tab.js js/tooltip.js
2014-06-17fix for #13747Erwan Jegouzo1-1/+1
Closes #13782 by merging it.
2014-06-12some changes from #13801 - add strict mode back and ==fat1-349/+351
2014-06-11Merge pull request #13786 from twbs/fat-13430Jacob1-2/+2
add special transitionend type to test event origin
2014-06-12Fix regression of #10038 introduced by #13772Heinrich Fenkart1-1/+1
2014-06-10add special transitionend type to test event originfat1-2/+2
fixes #13430
2014-06-10MD/CommonJS/Globals #12909Katie Zhu1-2/+6
2014-06-07don't show tooltips/popovers whose element isn't in the DOM; fixes #13268Chris Rebert1-2/+3
2014-06-06Minor style tweaks.XhmikosR1-1/+1
2014-06-06Comply to the new style.XhmikosR1-4/+4