2014-05-30 19:07:15 -05:00
|
|
|
/*
|
2014-09-28 10:39:25 -05:00
|
|
|
Dropdowns and their buttons are evented and do not propagate clicks.
|
2014-05-30 19:07:15 -05:00
|
|
|
*/
|
2014-09-28 10:39:25 -05:00
|
|
|
var DropdownMixin = Ember.Mixin.create(Ember.Evented, {
|
2014-09-24 08:36:20 -05:00
|
|
|
classNameBindings: ['isOpen:open:closed'],
|
2014-08-06 09:32:10 -05:00
|
|
|
isOpen: false,
|
2014-10-24 16:09:50 -05:00
|
|
|
|
2014-05-30 19:07:15 -05:00
|
|
|
click: function (event) {
|
|
|
|
this._super(event);
|
2014-10-24 16:09:50 -05:00
|
|
|
|
2014-05-30 19:07:15 -05:00
|
|
|
return event.stopPropagation();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-10-24 16:09:50 -05:00
|
|
|
export default DropdownMixin;
|