Skip to content

Commit 808bc87

Browse files
committed
Fire markupview-render event (Inspector panel patch)
1 parent f209248 commit 808bc87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/markup-view-patch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const { MarkupView } = devtools["require"]("devtools/markupview/markup-view");
2121
let originalTemplate = MarkupView.prototype.template;
2222
MarkupView.prototype.template = function(aName, aDest, aOptions) {
2323
let node = originalTemplate.apply(this, arguments);
24-
//this._inspector.emit("markupview-render", node, aName, aDest, aOptions);
24+
this._inspector.emit("markupview-render", node, aName, aDest, aOptions);
2525
return node;
2626
}
2727

0 commit comments

Comments
 (0)