##// END OF EJS Templates
fix sticky warning....
fix sticky warning. Widget.warning('text....') was infinitely sticky in some cases like content manager raising 'not implemented' on copy. The make default click_callback to dismiss notification, and fix the logic to not unbind the click handler if it requests the notification not to be dismissed.

File last commit:

r15940:36e09c7c
r20294:06a51f16
Show More
empty_arrow_keys.js
21 lines | 598 B | application/javascript | JavascriptLexer
//
// Check for errors with up and down arrow presses in an empty notebook.
//
casper.notebook_test(function () {
var result = this.evaluate(function() {
var ncells = IPython.notebook.ncells();
var i;
// Delete all cells.
for (i = 0; i < ncells; i++) {
IPython.notebook.delete_cell();
}
return true;
});
// Simulate the "up arrow" and "down arrow" keys.
this.trigger_keydown('up');
this.trigger_keydown('down');
this.test.assertTrue(result, 'Up/down arrow okay in empty notebook.');
});