mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 04:34:59 +08:00
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
import MountWidget from 'discourse/components/mount-widget';
|
|
|
|
export default MountWidget.extend({
|
|
tagName: 'span',
|
|
widget: "topic-admin-menu-button",
|
|
|
|
buildArgs() {
|
|
return this.getProperties('topic', 'fixed', 'openUpwards');
|
|
}
|
|
});
|