mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 12:16:09 +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');
|
||
|
}
|
||
|
});
|