##// END OF EJS Templates
HeadingCells are not splittable or mergeable...
MinRK -
Show More
@@ -482,6 +482,22 b' var IPython = (function (IPython) {'
482 return data;
482 return data;
483 };
483 };
484
484
485 /**
486 * can the cell be split into two cells
487 * @method is_splittable
488 **/
489 HeadingCell.prototype.is_splittable = function () {
490 return false;
491 };
492
493
494 /**
495 * can the cell be merged with other cells
496 * @method is_mergeable
497 **/
498 HeadingCell.prototype.is_mergeable = function () {
499 return false;
500 };
485
501
486 /**
502 /**
487 * Change heading level of cell, and re-render
503 * Change heading level of cell, and re-render
General Comments 0
You need to be logged in to leave comments. Login now