Fix tippy html issue

This commit is contained in:
yflory 2020-06-10 12:50:18 +02:00
parent 664db244f2
commit 60c19e0746
2 changed files with 3 additions and 2 deletions

View File

@ -807,6 +807,7 @@ define([
UI.createHelper = function (href, text) {
var q = h('a.fa.fa-question-circle', {
'data-cptippy-html': true,
style: 'text-decoration: none !important;',
title: text,
href: href,

View File

@ -283,13 +283,13 @@ define([
var onDisconnect = function (noAlert) {
setEditable(false);
if (drive.refresh) { drive.refresh(); }
APP.toolbar.failed();
toolbar.failed();
if (!noAlert) { UIElements.disconnectAlert(); }
};
var onReconnect = function () {
setEditable(true);
if (drive.refresh) { drive.refresh(); }
APP.toolbar.reconnecting();
toolbar.reconnecting();
UIElements.reconnectAlert();
};