Html – what is a backbone.undo.js object/model/collection and how do I register it?
I'm trying to use backbone.undo.js to implement undo and redo function into my html/javascript web app. I understand that I need to do this //Instantiate your UndoManager var undoManager = new Backbone.UndoManager({ register: object, track: true }) But I do…