Ui.bootstrap tooltips stopped working

Is it possible to understand why this will happen. Other directives from ui.bootstrap working properly alert, progressbaretc. However, popovers and tooltips for some reason stopped working. Has anyone had this problem? I used to have a problem - when, for some reason, the default CSS rule for the tooltip was opacity:0. But this time, a slightly different problem. He didn’t even add hint-related things to the DOM, as he had before.

I also notice from a view controller that uses a tooltip. I used to have access to type materials tt_title, tt_isOpen, tt_placement, etc. Now I can’t do this anymore.

I suspect something to do with the browser that we use. I noticed that the tooltips did not work first on my computer, but they worked anyway on my colleague, and then he deleted the bower and node_modules files, cleared the npm and bower cache, and the tooltips and pop-ups stopped working for him too .

I tried to add ui.bootstrap.tooltipexplicitly as a module dependency, although I already have one ui.bootstrap.

Please, if someone had similar problems, and know possible solutions, help me.

+4
source share
4 answers

1.2 1.3, . , Angular 1.3. : https://github.com/angular-ui/bootstrap/issues/2828

, :

<div tooltip="After today restriction" tooltip-trigger tooltip-animation="false" tooltip-placement="bottom">Hover me</div>
+17

1.3.5

tooltip-trigger tooltip-placement="top"

.

+4

Angular 1.3.14 Angular UI Bootstrap 0.11.2 , :

tooltip="Edit notifications"
tooltip-trigger
tooltip-animation="false"
tooltip-placement="top"
+3

, :

tooltip-trigger

... , . , , .

, tooltip-placement="top" tooltip-placement="bottom", , . . Angular 1.4.8.

:

tooltip-trigger
tooltip-placement="{{tooltip-placement}}"
tooltip="{{tooltip}}"
tooltip-append-to-body="true"

, tooltip-trigger .

tooltip-append-to-body , .

tooltip-trigger - .

0

All Articles