mirror of
https://github.com/flarum/core.git
synced 2025-07-30 21:20:24 +02:00
Big component restructure/overhaul
This commit is contained in:
16
ember/app/components/ui/controls/dropdown-split.js
Normal file
16
ember/app/components/ui/controls/dropdown-split.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import Ember from 'ember';
|
||||
|
||||
import DropdownButton from './dropdown-button';
|
||||
|
||||
export default DropdownButton.extend({
|
||||
layoutName: 'components/ui/controls/dropdown-split',
|
||||
classNames: ['dropdown', 'dropdown-split', 'btn-group'],
|
||||
|
||||
mainButtonClass: function() {
|
||||
return 'btn '+this.get('buttonClass');
|
||||
}.property('buttonClass'),
|
||||
|
||||
firstItem: function() {
|
||||
return this.get('items').objectAt(0);
|
||||
}.property('items.[]')
|
||||
});
|
Reference in New Issue
Block a user