Skip to content
This repository was archived by the owner on Dec 14, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "BootstrapTooltip",
"version": "3.2.2",
"version": "3.2.3",
"description": "This widget adds a tooltip to an user defined field, containing for example help text or extra information.",
"license": "Apache-2.0",
"author": "Mendix Technology B.V.",
Expand Down
4 changes: 2 additions & 2 deletions src/BootstrapTooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ export default declare("BootstrapTooltip.widget.BootstrapTooltip", [_WidgetBase,
if (this.tooltipMessageMicroflow) {
this._execMf(this.tooltipMessageMicroflow, obj ? obj.getGuid() : null, message => {
this._tooltipText = message;
setTimeout(() => this._initializeTooltip(callback), 10);
setTimeout(() => this._initializeTooltip(callback), 1000);
});
} else {
if (this.tooltipMessageString) {
this._tooltipText = this.tooltipMessageString;
}
setTimeout(() => this._initializeTooltip(callback), 10);
setTimeout(() => this._initializeTooltip(callback), 1000);
}
},

Expand Down
4 changes: 2 additions & 2 deletions src/BootstrapTooltipContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default declare("BootstrapTooltip.widget.BootstrapTooltipContext", [_boot
var guid = obj ? obj.getGuid() : null;
this._execMf(this.tooltipMessageMicroflow, guid, message => {
this._tooltipText = message;
setTimeout(() => this._initializeTooltip(callback), 10);
setTimeout(() => this._initializeTooltip(callback), 1000);
});
return;
}
Expand All @@ -27,7 +27,7 @@ export default declare("BootstrapTooltip.widget.BootstrapTooltipContext", [_boot
}
}

setTimeout(() => this._initializeTooltip(callback), 10);
setTimeout(() => this._initializeTooltip(callback), 1000);
},

_resetSubscriptions: function() {
Expand Down