This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/components/topic-admin-menu-button.js.es6
Robin Ward b58867b6e9 FEATURE: New 'Reviewable' model to make reviewable items generic
Includes support for flags, reviewable users and queued posts, with REST API
backwards compatibility.

Co-Authored-By: romanrizzi <romanalejandro@gmail.com>
Co-Authored-By: jjaffeux <j.jaffeux@gmail.com>
2019-03-28 12:45:10 -04:00

12 lines
307 B
JavaScript

import MountWidget from "discourse/components/mount-widget";
export default MountWidget.extend({
classNames: "topic-admin-menu-button-container",
tagName: "span",
widget: "topic-admin-menu-button",
buildArgs() {
return this.getProperties("topic", "fixed", "openUpwards", "rightSide");
}
});