From 1d8255122124fd52081c265bc7f7cbaa2bf4b46d Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Tue, 6 Aug 2024 07:33:01 +0200 Subject: [PATCH] load_scoring.js: use https://prod.ebiodiv.org/scoring.json --- docs/extra/load_scoring.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/extra/load_scoring.js b/docs/extra/load_scoring.js index 9512021..462fa92 100644 --- a/docs/extra/load_scoring.js +++ b/docs/extra/load_scoring.js @@ -24,8 +24,7 @@ function addColumn(document, tr, data) { docReady(async function() { let table = document.getElementById("scoring-table"); - // URL to replace by https://prod.ebiodiv.org/scoring.json - let scoring = await downloadScoring("https://raw.githubusercontent.com/bitem-heg-geneve/ebiodiv-matching-frontend/dist/scoring.json"); + let scoring = await downloadScoring("https://prod.ebiodiv.org/scoring.json"); for (const field of scoring) { const tr = document.createElement("tr"); addColumn(document, tr, field.order);