Skip to content

Commit

Permalink
Use https for backend
Browse files Browse the repository at this point in the history
  • Loading branch information
mxwell committed Apr 10, 2024
1 parent 6dbc9c0 commit a318233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions draw-graph/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ var parse = function() {
return (directed ? "digraph" : "graph") + "{" + result.join(";") + "}";
}

/* Query example: https://chart.googleapis.com/chart?cht=gv&chl=digraph{1->2;2->3;1->3;3->4;1->5} */
var render_service = "http://draw.khairulin.com/";
/* Query example: https://draw.khairulin.com/chart?cht=gv&chl=digraph{1->2;2->3;1->3;3->4;1->5} */
var render_service = "https://draw.khairulin.com/";
var previous_graph = "";

var chart_url = function(graph) {
Expand Down

0 comments on commit a318233

Please sign in to comment.