Adding CDN links and Tidyup
This commit is contained in:
parent
133445ccda
commit
232bdb0aa5
|
@ -71,7 +71,6 @@
|
|||
|
||||
tooltipContainer = d3.select(`.${chartClass} .metadata-group .vertical-marker-container`);
|
||||
tooltipContainer.datum([]).call(tooltip);
|
||||
// tooltip.show()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -147,7 +146,7 @@
|
|||
}
|
||||
|
||||
$: validChartProps = chart ? Object.getOwnPropertyNames(chart) : null;
|
||||
$: canUseTooltip = type === "groupedBar" && tooltipProps && useTooltip;
|
||||
$: canUseTooltip = tooltipProps && useTooltip;
|
||||
|
||||
</script>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
</script>
|
||||
|
||||
<div class="root">
|
||||
|
||||
{#each screens as screen}
|
||||
<div
|
||||
class="budibase__nav-item component"
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
<title>Budibase Builder</title>
|
||||
|
||||
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.3.0/fonts/remixicon.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/britecharts/dist/css/britecharts.min.css" type="text/css" />
|
||||
|
||||
<link rel='icon' type='image/png' href='/_builder/favicon.png'>
|
||||
<link rel='stylesheet' href='/_builder/global.css'>
|
||||
|
@ -21,6 +22,9 @@
|
|||
</head>
|
||||
|
||||
<body id="app">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.7.4/d3.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/britecharts@2/dist/bundled/britecharts.min.js"></script>
|
||||
|
||||
<script src='/_builder/bundle.js'></script>
|
||||
</body>
|
||||
|
||||
|
|
Loading…
Reference in New Issue