mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
REFACTOR: removes superfluous argument passed to findWidget (#9669)
findWidget accepts only one argument
This commit is contained in:
parent
5a201082c7
commit
48375db848
@ -58,11 +58,11 @@ export default class WidgetGlue {
|
|||||||
widget.vnode.children.forEach(child => {
|
widget.vnode.children.forEach(child => {
|
||||||
if (child.constructor.name === "CustomWidget") {
|
if (child.constructor.name === "CustomWidget") {
|
||||||
widgets.push(child);
|
widgets.push(child);
|
||||||
findWidgets(child, widgets);
|
findWidgets(child);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
findWidgets(this._tree, widgets);
|
findWidgets(this._tree);
|
||||||
widgets.reverse().forEach(widget => widget.destroy());
|
widgets.reverse().forEach(widget => widget.destroy());
|
||||||
|
|
||||||
cancel(this._timeout);
|
cancel(this._timeout);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user