fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
editor: removing lists via lists buttons
[fnpeditor.git]
/
src
/
smartxml
/
smartxml.js
diff --git
a/src/smartxml/smartxml.js
b/src/smartxml/smartxml.js
index
663b332
..
c23e06d
100644
(file)
--- a/
src/smartxml/smartxml.js
+++ b/
src/smartxml/smartxml.js
@@
-583,16
+583,23
@@
$.extend(Document.prototype, Backbone.Events, {
this._currentTransaction = null;
},
this._currentTransaction = null;
},
- transaction: function(callback,
context, metadata
) {
+ transaction: function(callback,
params
) {
var toret;
var toret;
- this.startTransaction(metadata);
+ params = params || {};
+ this.startTransaction(params.metadata);
try {
try {
- toret = callback.call(
context
);
+ toret = callback.call(
params.context || this
);
} catch(e) {
} catch(e) {
+ if(params.error) {
+ params.error(e);
+ }
this.rollbackTransaction();
this.rollbackTransaction();
-
throw e
;
+
return
;
}
this.endTransaction();
}
this.endTransaction();
+ if(params.success) {
+ params.success(toret);
+ }
return toret;
},
return toret;
},