##// END OF EJS Templates
fix one more == to ===
Matthias BUSSONNIER -
Show More
@@ -570,7 +570,7 var IPython = (function (IPython) {
570 index = Math.max(index,0);
570 index = Math.max(index,0);
571 var cell = null;
571 var cell = null;
572
572
573 if (ncells === 0 || this.is_valid_cell_index(index) || index== ncells) {
573 if (ncells === 0 || this.is_valid_cell_index(index) || index === ncells) {
574 if (type === 'code') {
574 if (type === 'code') {
575 cell = new IPython.CodeCell(this.kernel);
575 cell = new IPython.CodeCell(this.kernel);
576 cell.set_input_prompt();
576 cell.set_input_prompt();
General Comments 0
You need to be logged in to leave comments. Login now