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

Choose a tag to compare

@ArthurClemens ArthurClemens released this 16 May 18:01

Fixes #26

1.1.0

Choose a tag to compare

@ArthurClemens ArthurClemens released this 06 Mar 16:17

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

Choose a tag to compare

@ArthurClemens ArthurClemens released this 05 Mar 16:17

Maintenance release.