diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-06-04 09:28:49 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-11-18 14:46:42 +0100 |
commit | 7a7e03700c76c59f2027ae848be497f6a2d484ca (patch) | |
tree | 4c808dbf19922bf214e445f8a4a3deb20df36691 /content/Informatique | |
parent | fefaf0306c07b55c716189f5307558ed7b5523ce (diff) |
Update applications
Diffstat (limited to 'content/Informatique')
-rwxr-xr-x | content/Informatique/2020-12-05-graphviz_en_js.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/content/Informatique/2020-12-05-graphviz_en_js.rst b/content/Informatique/2020-12-05-graphviz_en_js.rst index 7ecbcb1..b51926e 100755 --- a/content/Informatique/2020-12-05-graphviz_en_js.rst +++ b/content/Informatique/2020-12-05-graphviz_en_js.rst @@ -143,9 +143,8 @@ La démo load_button.onclick = async function() { var note = document.getElementById('note'); note.remove(); - var s1 = getScript("/resources/viz.js/download.js"); - var s2 = getScript("/resources/viz.js/convert.js"); - await Promise.all([s1, s2]); + var s1 = getScript("/resources/viz.js/convert.js"); + await Promise.all([s1]); generator.load(); var overlay = document.getElementById("overlay"); overlay.remove(); |