Make popover and tooltip part of the UI module instead of utils

This commit is contained in:
Quincy Morgan
2020-03-24 17:32:09 -07:00
parent 14da8cb7a7
commit d62a62cba8
32 changed files with 83 additions and 82 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import { t } from '../util/locale';
import { svgIcon } from '../svg/icon';
import { tooltip } from '../util/tooltip';
import { uiTooltip } from './tooltip';
import { utilEntityOrMemberSelector } from '../util';
@@ -55,7 +55,7 @@ export function uiCommitWarnings(context) {
.attr('class', 'issue-message');
itemsEnter.filter(function(d) { return d.tooltip; })
.call(tooltip()
.call(uiTooltip()
.title(function(d) { return d.tooltip; })
.placement('top')
);