Skip to content

Commit

Permalink
jupyter#3974: made the narrator read out any errors in code
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuazeltser committed Jun 11, 2019
1 parent 86a6e56 commit 2d4cd2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook/static/notebook/js/outputarea.js
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ define([
var toinsert = this.create_output_area();
var append_text = OutputArea.append_map[MIME_TEXT];
if (append_text) {
append_text.apply(this, [s, {}, toinsert]).addClass('output_error');
append_text.apply(this, [s, {}, toinsert]).addClass('output_error').attr('aria-live', s);
}
this._safe_append(toinsert);
}
Expand Down

0 comments on commit 2d4cd2e

Please sign in to comment.