From 6270dce76c482ba2455d688efbc692c969dcf15d Mon Sep 17 00:00:00 2001 From: Kevin Kaspari Date: Mon, 23 Dec 2024 07:17:44 -0800 Subject: [PATCH] Add clarifying comment --- tronweb/coffee/views.coffee | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tronweb/coffee/views.coffee b/tronweb/coffee/views.coffee index 04fc92d1a..05ecf4e57 100644 --- a/tronweb/coffee/views.coffee +++ b/tronweb/coffee/views.coffee @@ -64,6 +64,9 @@ window.isSelected = (current, value) -> window.makeTooltips = (root) -> root.find('.tt-enable').tooltip({ + # There is some strange behaviour with the tooltip animation in Bootstrap 2 + # that causes the object to get into a bad state and not appear as expected. + # Disabling animation is a workaround until we upgrade to Bootstrap 3 (or 4...or 5) animation: false })