Expose reopenWidget through plugin api
This commit is contained in:
parent
513f570936
commit
646b49e5ae
|
@ -5,7 +5,7 @@ import { addButton } from 'discourse/widgets/post-menu';
|
|||
import { includeAttributes } from 'discourse/lib/transform-post';
|
||||
import { addToolbarCallback } from 'discourse/components/d-editor';
|
||||
import { addWidgetCleanCallback } from 'discourse/components/mount-widget';
|
||||
import { createWidget, decorateWidget, changeSetting } from 'discourse/widgets/widget';
|
||||
import { createWidget, reopenWidget, decorateWidget, changeSetting } from 'discourse/widgets/widget';
|
||||
import { onPageChange } from 'discourse/lib/page-tracker';
|
||||
import { preventCloak } from 'discourse/widgets/post-stream';
|
||||
import { h } from 'virtual-dom';
|
||||
|
@ -307,6 +307,16 @@ class PluginApi {
|
|||
return createWidget(name, args);
|
||||
}
|
||||
|
||||
/**
|
||||
* Exposes the widget update ability to plugins. Updates the widget
|
||||
* registry for the given widget name to include the properties on args
|
||||
* See `reopenWidget` in `discourse/widgets/widget` from more ifo.
|
||||
**/
|
||||
|
||||
reopenWidget(name, args) {
|
||||
return reopenWidget(name, args);
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a property that can be summed for calculating the flag counter
|
||||
**/
|
||||
|
|
Loading…
Reference in New Issue