Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Seleda/aima-javascript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: aimacode/aima-javascript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 33 files changed
  • 2 contributors

Commits on Feb 20, 2026

  1. fix mixed content error (aimacode#181)

    The code in this page are not working because jquery was being fetched using `http` and the page itself was loaded using `https`.
    
    This commit fixed it by updating the URL of jquery to `https`
    imbdb authored Feb 20, 2026
    Configuration menu
    Copy the full SHA
    a08cda0 View commit details
    Browse the repository at this point in the history
  2. Fix http:// links to use // or https://, avoid mixed content errors

    This project was last active in 2019. By 2020, browsers stopped
    allowing mixed http and https content. Using "//" will make it match
    the http vs https of the document; using "https://" will always use
    https.
    redblobgames committed Feb 20, 2026
    Configuration menu
    Copy the full SHA
    0d2bb1c View commit details
    Browse the repository at this point in the history
Loading