2015-02-12 21:22:32 -07:00
|
|
|
import Ember from 'ember';
|
2015-10-28 11:36:45 +00:00
|
|
|
|
|
|
|
const {Evented, Mixin} = Ember;
|
|
|
|
|
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
|
|
|
*/
|
2015-10-28 11:36:45 +00:00
|
|
|
export default Mixin.create(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
|
|
|
|
2015-10-28 11:36:45 +00:00
|
|
|
click(event) {
|
2014-05-30 18:07:15 -06:00
|
|
|
this._super(event);
|
2014-10-24 21:09:50 +00:00
|
|
|
|
2014-05-30 18:07:15 -06:00
|
|
|
return event.stopPropagation();
|
|
|
|
}
|
|
|
|
});
|