Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Oct 24, 2017
1 parent 09bffac commit 4ceb80d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions dist/v-tooltip.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -2905,6 +2905,7 @@ var Tooltip = function () {
if (this._tooltipNode) {
this._tooltipNode.style.display = '';
this._tooltipNode.setAttribute('aria-hidden', 'false');
this.popperInstance.enableEventListeners();
this.popperInstance.update();
return this;
}
Expand Down Expand Up @@ -2984,6 +2985,8 @@ var Tooltip = function () {
this._tooltipNode.style.display = 'none';
this._tooltipNode.setAttribute('aria-hidden', 'true');

this.popperInstance.disableEventListeners();

clearTimeout(this._disposeTimer);
var disposeTime = directive.options.disposeTimeout;
if (disposeTime !== null) {
Expand Down
Loading

0 comments on commit 4ceb80d

Please sign in to comment.