Fixing enter to leave list

Pressing enter in an empty last list item should remove the list item and add a paragraph. Transaction was not being committed.

Change-Id: I0b173125d48f629eab923e051648d2036bb8956c
This commit is contained in:
Christian Williams 2012-08-23 14:34:36 -07:00
parent 8c0249bb89
commit c011a5c08f

View file

@ -928,6 +928,7 @@ ve.ce.Surface.prototype.handleEnter = function ( e ) {
tx = ve.dm.Transaction.newFromInsertion(
documentModel, list.getOuterRange().to, emptyParagraph
);
this.model.change( tx );
advanceCursor = false;
} else {