Small renaming fixes.

Brian E. Granger 11 years ago
parent a3de1c7608
commit a5e9d96089

@ -273,7 +273,7 @@ define([
var build_div = function (title, shortcuts) {
// Remove ipython.ignore shortcuts.
// Remove jp-notebook:ignore shortcuts.
shortcuts = shortcuts.filter(function(shortcut) {
if (shortcut.help === 'ignore') {
return false;

@ -30,7 +30,7 @@ casper.notebook_test(function () {
$('#cell_type').val('markdown').change();
var cell = IPython.notebook.get_selected_cell();
cell.set_text('*Baz*');
$("button[data-jupyter-action='ipython.run-cell-and-select-next']")[0].click();
$("button[data-jupyter-action='jp-notebook:run-cell-and-select-next']")[0].click();
return cell.get_rendered();
});
this.test.assertEquals(output.trim(), '<p><em>Baz</em></p>', 'Markdown toolbar items work.');

Loading…
Cancel
Save