mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: 'main',
|
|
classNames: ['gh-main'],
|
|
ariaRole: 'main',
|
|
|
|
mouseEnter: function () {
|
|
this.sendAction('onMouseEnter');
|
|
}
|
|
});
|