##// END OF EJS Templates
Display prompt in the notebook correctly
Jessica B. Hamrick -
Show More
@@ -410,7 +410,7 b' define(['
410 410
411 411 CodeCell.input_prompt_classical = function (prompt_value, lines_number) {
412 412 var ns;
413 if (prompt_value === undefined) {
413 if (prompt_value === undefined || prompt_value === null) {
414 414 ns = " ";
415 415 } else {
416 416 ns = encodeURIComponent(prompt_value);
General Comments 0
You need to be logged in to leave comments. Login now