fix mobile tips

This commit is contained in:
antelle 2017-04-16 11:53:14 +02:00
parent aa7a7415df
commit a45ec36d21
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ Tip.createTips = function(container) {
};
Tip.createTip = function(el, options) {
if (!Tip.enabled) {
if (!Tip.enabled && (!options || !options.force)) {
return;
}
const tip = new Tip($(el), options);