We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53cb58f commit 7d76814Copy full SHA for 7d76814
bases/rsptx/interactives/runestone/activecode/js/activecode_sql.js
@@ -34,6 +34,8 @@ export default class SQLActiveCode extends ActiveCode {
34
if (self.dburl) {
35
if (self.dburl.startsWith("/_static")) {
36
self.dburl = `${bookprefix}${self.dburl}`;
37
+ } else if (self.dburl.startsWith("external")) {
38
+ self.dburl = `${bookprefix}/${self.dburl}`;
39
}
40
$(self.runButton).attr("disabled", "disabled");
41
let buttonText = $(self.runButton).text();
0 commit comments