Problem: there are a lot of tooltips in staking UI that are located in dynamically created DOM, which are currently not initialized correctly. Solution: initialize tooltips on <body> with selector parameter.pull/2551/head
parent
4573fc44ad
commit
b7c89cd790
@ -1,5 +1,5 @@ |
||||
import $ from 'jquery' |
||||
|
||||
$(function () { |
||||
$('[data-toggle="tooltip"]').tooltip() |
||||
$('body').tooltip({ selector: '[data-toggle="tooltip"]' }) |
||||
}) |
||||
|
Loading…
Reference in new issue