1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/components/gh-mobile-nav-bar.js
2017-02-17 12:31:12 -06:00

12 lines
245 B
JavaScript

import Component from 'ember-component';
export default Component.extend({
tagName: 'nav',
classNames: ['gh-mobile-nav-bar'],
actions: {
openMobileMenu() {
this.sendAction('openMobileMenu');
}
}
});