We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78fc3d8 commit 0010ba8Copy full SHA for 0010ba8
core/markup/aml/element.js
@@ -479,9 +479,9 @@ apf.AmlElement = function(struct, tagName){
479
if (options && options.clear)
480
include.setAttribute("clear", true);
481
include.options = options;
482
- include.callback = function(){
+ include.callback = function(e){
483
_self.dispatchEvent("afteramlinserted", {src: amlDefNode});
484
- options && options.callback && options.callback();
+ options && options.callback && options.callback(e);
485
setTimeout(function(){
486
include.destroy(true, true);
487
});
0 commit comments