X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/87b603a0cc0a310b8166d8126e84259096a7a83d..258f516ed932787fc3a5e1c970831a885e00872f:/src/smartxml/smartxml.js diff --git a/src/smartxml/smartxml.js b/src/smartxml/smartxml.js index 426dce0..31faef0 100644 --- a/src/smartxml/smartxml.js +++ b/src/smartxml/smartxml.js @@ -560,6 +560,7 @@ $.extend(Document.prototype, Backbone.Events, { if(this._currentTransaction) { throw new Error('Nested transactions not supported!'); } + this._rollbackBackup = this.root.clone(); this._currentTransaction = new Transaction([], metadata); }, @@ -573,6 +574,15 @@ $.extend(Document.prototype, Backbone.Events, { this._currentTransaction = null; }, + rollbackTransaction: function() { + if(!this._currentTransaction) { + throw new Error('Transaction rollback requested, but there is no transaction in progress!'); + } + this.replaceRoot(this._rollbackBackup); + this._rollbackBackup = null; + this._currentTransaction = null; + }, + transaction: function(callback, context, metadata) { var toret; this.startTransaction(metadata);