##// END OF EJS Templates
s/_is_cell_editor_focused/is_cell_editor_focused
Jonathan Frederic -
Show More
@@ -121,9 +121,9 b' casper.notebook_test(function () {'
121 121 var cell = this._get_cell(i);
122 122 if (cell) {
123 123 if (cell.mode == 'edit') {
124 return this._is_cell_editor_focused(i);
124 return this.is_cell_editor_focused(i);
125 125 } else {
126 return !this._is_cell_editor_focused(i);
126 return !this.is_cell_editor_focused(i);
127 127 }
128 128 }
129 129 return true;
@@ -161,7 +161,7 b' casper.notebook_test(function () {'
161 161 }, {k: key});
162 162 };
163 163
164 this._is_cell_editor_focused = function(i) {
164 this.is_cell_editor_focused = function(i) {
165 165 return this._is_cell_inputfield(i, '.CodeMirror-focused *');
166 166 };
167 167
General Comments 0
You need to be logged in to leave comments. Login now