We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efdfaad commit efdc442Copy full SHA for efdc442
src/tooltip/tooltip.js
@@ -252,7 +252,8 @@
252
});
253
}
254
255
- tip.data("__set", true);
+ // bind again for same tip element
256
+ if (!conf.tip) tip.data("__set", true);
257
258
259
return self;
test/tooltip/index.html
@@ -75,7 +75,7 @@ <h3>Data-tooltip attribute</h3>
75
76
<script>
77
$("#attr a").tooltip({
78
-
+ delay: 50
79
80
</script>
81
@@ -119,9 +119,7 @@ <h3>Same tip element</h3>
119
120
$("#same a").tooltip({
121
tip: '#sametip',
122
- delay: 50,
123
- predelay: 110,
124
- effect: 'fade'
+ effect: 'fade'
125
126
127
0 commit comments