2017-11-21 05:53:09 -05:00
|
|
|
import ComboBoxComponent from "select-kit/components/combo-box";
|
2017-10-19 15:51:08 -04:00
|
|
|
|
|
|
|
export default ComboBoxComponent.extend({
|
2017-11-21 05:53:09 -05:00
|
|
|
pluginApiIdentifiers: ["topic-footer-mobile-dropdown"],
|
2020-02-03 08:22:14 -05:00
|
|
|
classNames: ["topic-footer-mobile-dropdown"],
|
2017-10-19 15:51:08 -04:00
|
|
|
|
2020-02-03 08:22:14 -05:00
|
|
|
selectKitOptions: {
|
|
|
|
none: "topic.controls",
|
|
|
|
filterable: false,
|
|
|
|
autoFilterable: false
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
2020-02-03 08:22:14 -05:00
|
|
|
actions: {
|
|
|
|
onChange(value, item) {
|
|
|
|
item.action && item.action();
|
|
|
|
}
|
2017-10-19 15:51:08 -04:00
|
|
|
}
|
|
|
|
});
|