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 9467212 commit 950a4d4Copy full SHA for 950a4d4
PyTutorGAE/js/pytutor.js
@@ -454,7 +454,7 @@ ExecutionVisualizer.prototype.renderPyCodeOutput = function() {
454
455
var lineNo = d3.select(t).datum().lineNumber;
456
457
- if (myViz.visitedLinesSet[lineNo]) {
+ if (myViz.visitedLinesSet.has(lineNo)) {
458
d3.select(t.parentNode).select('td.lineNo').style('color', visitedLineColor);
459
d3.select(t.parentNode).select('td.lineNo').style('font-weight', 'bold');
460
}
0 commit comments