0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/core/client/app/components/gh-popover.js

10 lines
217 B
JavaScript
Raw Normal View History

import Ember from 'ember';
2014-09-29 12:17:27 +01:00
import GhostDropdown from 'ghost/components/gh-dropdown';
const {inject} = Ember;
export default GhostDropdown.extend({
classNames: 'ghost-popover',
dropdown: inject.service()
2014-09-29 12:17:27 +01:00
});