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