Ghost/ghost/admin/mixins/popover-mixin.js

13 lines
334 B
JavaScript
Raw Normal View History

/*
Popovers and their buttons are evented and do not propagate clicks.
*/
var PopoverMixin = Ember.Mixin.create(Ember.Evented, {
classNameBindings: ['isOpen:open:closed'],
isOpen: false,
click: function (event) {
this._super(event);
return event.stopPropagation();
}
});
export default PopoverMixin;