fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wlxml: lists - createList returns created list node
[fnpeditor.git]
/
src
/
smartxml
/
smartxml.js
diff --git
a/src/smartxml/smartxml.js
b/src/smartxml/smartxml.js
index
663b332
..
628163a
100644
(file)
--- a/
src/smartxml/smartxml.js
+++ b/
src/smartxml/smartxml.js
@@
-479,7
+479,7
@@
$.extend(Document.prototype, Backbone.Events, {
if(!this._currentTransaction) {
return this.transaction(function() {
return this.transform(Transformation, args);
if(!this._currentTransaction) {
return this.transaction(function() {
return this.transform(Transformation, args);
- },
this
);
+ },
{context: this}
);
}
if(typeof Transformation === 'function') {
}
if(typeof Transformation === 'function') {
@@
-581,18
+581,26
@@
$.extend(Document.prototype, Backbone.Events, {
this.replaceRoot(this._rollbackBackup);
this._rollbackBackup = null;
this._currentTransaction = null;
this.replaceRoot(this._rollbackBackup);
this._rollbackBackup = null;
this._currentTransaction = null;
+ this._transformationLevel = 0;
},
},
- 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;
},