Third Party Libraries - dan7davis/Lambda GitHub Wiki
For some reason, standard approaches for including third party libraries tend not to work in edX.
The solution I found to work best has three steps:
-
Grab entire text contents of the library .js file and save it locally as a .js.
-
Upload that file to the "Files & Uploads" page in the edX course.
-
Link the script to that file with an HTML tag.
This is what the setup looks like in action:
And then reference it in a RAW HTML component with
<script src="/static/pbref.js"></script>