Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Releases: ArthurClemens/JavaScript-Undo-Manager

1.1.1

16 May 18:01

Choose a tag to compare

1.1.0

06 Mar 16:17

Choose a tag to compare

Grouping functionality

Optionally add a groupId to identify related command pairs. Undo and redo actions will then be performed on all adjacent command pairs with that group id.

For example:

undoManager.add({
  groupId: 'auth',
  undo: () => removePerson(id),
  redo: () => addPerson(id, name)
});

1.0.6

05 Mar 16:17

Choose a tag to compare

Maintenance release.