##// END OF EJS Templates
make paste focuses the pasted cell...
make paste focuses the pasted cell This is to make paste behave in the same manner that insert cell above and below currently work (inserting a new item causes that item to receive focus). This solves a problem where, if a user pastes below a cell whose bottom edge is below the current viewing area, they have no indication that any action has occurred. The same applies for paste above a cell whose top edge is occluded.

File last commit:

r14080:dd345f46
r14972:6eadb014
Show More
nb_arrow_keys.js
24 lines | 930 B | application/javascript | JavascriptLexer
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 //
// Check for errors with up and down arrow presses in a non-empty notebook.
//
casper.notebook_test(function () {
var result = this.evaluate(function() {
Brian E. Granger
Fixing JS tests.
r14080 IPython.notebook.command_mode();
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 pos0 = IPython.notebook.get_selected_index();
Brian E. Granger
Fixing JS tests.
r14080 IPython.utils.press(IPython.keycodes.b)
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 pos1 = IPython.notebook.get_selected_index();
Brian E. Granger
Fixing JS tests.
r14080 IPython.utils.press(IPython.keycodes.b)
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 pos2 = IPython.notebook.get_selected_index();
// Simulate the "up arrow" and "down arrow" keys.
IPython.utils.press_up();
pos3 = IPython.notebook.get_selected_index();
IPython.utils.press_down();
pos4 = IPython.notebook.get_selected_index();
return pos0 == 0 &&
pos1 == 1 &&
pos2 == 2 &&
pos3 == 1 &&
pos4 == 2;
});
this.test.assertTrue(result, 'Up/down arrow okay in non-empty notebook.');
});