Skip to content

Commit

Permalink
modified: src/http.c
Browse files Browse the repository at this point in the history
  • Loading branch information
jvo203 committed Aug 31, 2022
1 parent d7eb75a commit d28bd6f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/http.c
Original file line number Diff line number Diff line change
Expand Up @@ -2434,8 +2434,9 @@ static enum MHD_Result execute_alma(struct MHD_Connection *connection, char **va
g_string_append(html, "<script src=\"https://cdn.jsdelivr.net/gh/jvo203/fits_web_ql/htdocs/fitswebql/FileSaver.js\"></script>\n");

// WebAssembly
g_string_append(html, "<script "
"src=\"client." WASM_VERSION ".js\"></script>\n");
// g_string_append(html, "<script src=\"client." WASM_VERSION ".js\"></script>\n");
// use the CDN version of the WebAssembly binary
g_string_append(html, "<script src=\"https://cdn.jsdelivr.net/gh/jvo203/FITSWEBQLSE/htdocs/fitswebql/client." WASM_VERSION ".js\"></script>\n");
g_string_append_printf(html, "<script>\n"
"Module.ready\n"
"\t.then(status => console.log(status))\n"
Expand Down

0 comments on commit d28bd6f

Please sign in to comment.