mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
feac9682d0
- Refactor to handle deprecations including removal of all Views, ArrayControllers, and ItemControllers.
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: 'h2',
|
|
classNames: ['view-title'],
|
|
actions: {
|
|
openMobileMenu: function () {
|
|
this.sendAction('openMobileMenu');
|
|
}
|
|
}
|
|
});
|