Undo Manager

Extends Arte.Text area to add undo/redo capabilities

Usage

The undo manager exposes the following public api to the Arte Text Area

Undo

Perform an undo action

    $(".editor").Arte.undo(); 

Redo

Perform an redo action

    $(".editor").Arte.redo(); 

Has Undo

Whether or not the manager can undo (is there an undo on the stack)

    var hasUndo = $(".editor").Arte.hasUndo(); 

Has Redo

Whether or not the manager can redo (is there a redo on the stack)

    var hasRedo = $(".editor").Arte.hasRedo();