1
0
mirror of https://github.com/flarum/core.git synced 2025-10-11 23:14:29 +02:00
Files
php-flarum/ember/forum/app/components/index/welcome-hero.js

20 lines
370 B
JavaScript

import Ember from 'ember';
/**
Component for the "welcome to this forum" hero on the discussions index.
*/
export default Ember.Component.extend({
layoutName: 'components/index/welcome-hero',
tagName: 'header',
classNames: ['hero', 'welcome-hero'],
title: '',
description: '',
actions: {
close: function() {
this.$().slideUp();
}
}
});