Skip to content

Commit

Permalink
Merge pull request #1 from jtpio/fix-https
Browse files Browse the repository at this point in the history
Use HTTPS to Pytutor
  • Loading branch information
DerThorsten committed Dec 9, 2022
2 parents 30e177f + 4fcefb4 commit 2840010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class PyTutorIFrame extends IFrame {
super();

console.log('SRC: ', src);
this.url = `http://pythontutor.com/iframe-embed.html#code=${encodeURIComponent(
this.url = `https://pythontutor.com/iframe-embed.html#code=${encodeURIComponent(
src
)}&codeDivHeight=900&codeDivWidth=350&cumulative=true&curInstr=0&heapPrimitives=nevernest&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false`;
console.log('Full URL: ', this.url);
Expand Down

0 comments on commit 2840010

Please sign in to comment.