Fix missing dot

Actually call replace on the filename.
This commit is contained in:
Jan Graichen
2018-10-18 21:03:46 +02:00
parent 131f610116
commit db9557108c

View File

@ -174,7 +174,7 @@ CodeOceanEditorSubmissions = {
this.createSubmission('#test', null, function(response) {
this.showSpinner($('#test'));
$('#score_div').addClass('hidden');
var url = response.test_url.replace(this.FILENAME_URL_PLACEHOLDER, this.active_file.filenamereplace(/#$/,'')); // remove # if it is the last character, this is not part of the filename and just an anchor
var url = response.test_url.replace(this.FILENAME_URL_PLACEHOLDER, this.active_file.filename.replace(/#$/,'')); // remove # if it is the last character, this is not part of the filename and just an anchor
this.initializeSocketForTesting(url);
}.bind(this));
}