From ed347b4f224782e61d12d4c68085a36f3cfe8628 Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Thu, 21 May 2020 11:11:47 +0300 Subject: Use d3-tip from guix --- wqflask/wqflask/templates/comparison_bar_chart.html | 2 +- wqflask/wqflask/templates/corr_scatterplot.html | 2 +- wqflask/wqflask/templates/correlation_matrix.html | 2 +- wqflask/wqflask/templates/heatmap.html | 2 +- wqflask/wqflask/templates/mapping_results.html | 2 +- wqflask/wqflask/templates/pair_scan_results.html | 2 +- wqflask/wqflask/templates/show_trait.html | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/wqflask/wqflask/templates/comparison_bar_chart.html b/wqflask/wqflask/templates/comparison_bar_chart.html index dc74ddb2..c26472f0 100644 --- a/wqflask/wqflask/templates/comparison_bar_chart.html +++ b/wqflask/wqflask/templates/comparison_bar_chart.html @@ -29,7 +29,7 @@ - + diff --git a/wqflask/wqflask/templates/corr_scatterplot.html b/wqflask/wqflask/templates/corr_scatterplot.html index 4739b467..3ea3d4da 100644 --- a/wqflask/wqflask/templates/corr_scatterplot.html +++ b/wqflask/wqflask/templates/corr_scatterplot.html @@ -348,7 +348,7 @@ - + diff --git a/wqflask/wqflask/templates/correlation_matrix.html b/wqflask/wqflask/templates/correlation_matrix.html index 5659dca7..127907cb 100644 --- a/wqflask/wqflask/templates/correlation_matrix.html +++ b/wqflask/wqflask/templates/correlation_matrix.html @@ -128,7 +128,7 @@ - + diff --git a/wqflask/wqflask/templates/heatmap.html b/wqflask/wqflask/templates/heatmap.html index 275ff1ba..bd3bedb5 100644 --- a/wqflask/wqflask/templates/heatmap.html +++ b/wqflask/wqflask/templates/heatmap.html @@ -33,7 +33,7 @@ - + diff --git a/wqflask/wqflask/templates/mapping_results.html b/wqflask/wqflask/templates/mapping_results.html index 961c3b21..8c772a13 100644 --- a/wqflask/wqflask/templates/mapping_results.html +++ b/wqflask/wqflask/templates/mapping_results.html @@ -336,7 +336,7 @@ - + diff --git a/wqflask/wqflask/templates/pair_scan_results.html b/wqflask/wqflask/templates/pair_scan_results.html index 5c776fc1..59304583 100644 --- a/wqflask/wqflask/templates/pair_scan_results.html +++ b/wqflask/wqflask/templates/pair_scan_results.html @@ -63,7 +63,7 @@ {% block js %} - + diff --git a/wqflask/wqflask/templates/show_trait.html b/wqflask/wqflask/templates/show_trait.html index 15442ca7..daf558b9 100644 --- a/wqflask/wqflask/templates/show_trait.html +++ b/wqflask/wqflask/templates/show_trait.html @@ -132,7 +132,7 @@ - + -- cgit v1.2.3 From db0ba01a135902f5b90ca1674f064371e710a959 Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Mon, 31 Aug 2020 17:55:19 +0300 Subject: Add check for "d3-tip.js" js library * test/requests/link_checker.py (check_packaged_js_files): Add it. --- test/requests/link_checker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/requests/link_checker.py b/test/requests/link_checker.py index d29e5965..31f0dc34 100644 --- a/test/requests/link_checker.py +++ b/test/requests/link_checker.py @@ -99,6 +99,7 @@ def check_packaged_js_files(args_obj, parser): "/DataTablesExtensions/plugins/sorting/scientific.js", # Other js libraries "/chroma/chroma.min.js" + "/d3-tip/d3-tip.js" ] print("Checking links") -- cgit v1.2.3