Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/assets/javascripts/exercises.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
\<script src=\"https://opendsa-server.cs.vt.edu/OpenDSA/JSAV/build/JSAV-min.js\">\<\/script>\n\
\<script src=\"https://opendsa-server.cs.vt.edu/OpenDSA/lib/odsaUtils-min.js\">\<\/script>\n\
\<script src=\"https://opendsa-server.cs.vt.edu/OpenDSA/lib/odsaAV-min.js\">\<\/script>\n\
\<script src=\"https://opendsax.cs.vt.edu:9292/assets/JsavWrapper.js\">\<\/script>\n';
\<script src=\"https://opendsa-server.cs.vt.edu:9292/assets/JsavWrapper.js\">\<\/script>\n';
html += loadScripts();
html += '\n \<\/body>' + "</html>";
if (document.getElementsByTagName('iframe').length !== 0) {
Expand Down Expand Up @@ -122,4 +122,4 @@
}
return html;
}
}).call(this);
}).call(this);
2 changes: 1 addition & 1 deletion app/controllers/exercises_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class ExercisesController < ApplicationController
after_action :allow_iframe, only: [:practice, :embed]
# -------------------------------------------------------------

HTTP_URL = 'https://opendsax.cs.vt.edu:9292/answers/solve'
HTTP_URL = 'https://opendsa-server.cs.vt.edu:9292/answers/solve'

# GET /exercises
def index
Expand Down