Fixing Cell menu to update cell type select box.

This commit is contained in:
Brian Granger 2012-02-07 12:02:54 -08:00
parent cd0810ee25
commit 6c9a7d0d41

View File

@ -125,7 +125,7 @@ var IPython = (function (IPython) {
IPython.notebook.to_heading(undefined, 6);
};
});
$([IPython.events]).on('selected_cell_type_changed', function (event, data) {
$([IPython.events]).on('selected_cell_type_changed.Notebook', function (event, data) {
if (data.cell_type === 'heading') {
that.element.find('#cell_type').val(data.cell_type+data.level);
} else {