To achieve replacement, this commit also adds support for:
- clearSelectionLabel which will allows to unselect any chosen category
- select-box inside a modal
- fixes minor css positioning issues
Note: {{category-chooser}} will be removed in the next weeks.
10 lines
175 B
JavaScript
10 lines
175 B
JavaScript
export default Ember.Component.extend({
|
|
classNames: "select-box-collection",
|
|
|
|
actions: {
|
|
onClearSelection() {
|
|
this.sendAction("onClearSelection");
|
|
}
|
|
}
|
|
});
|