mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
fb239054a0
follow up from #95 - converts components to use ember-cli-shims
13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
import Component from 'ember-component';
|
|
|
|
export default Component.extend({
|
|
tagName: 'h2',
|
|
classNames: ['view-title'],
|
|
|
|
actions: {
|
|
openMobileMenu() {
|
|
this.sendAction('openMobileMenu');
|
|
}
|
|
}
|
|
});
|