mirror of
https://github.com/flarum/core.git
synced 2025-10-18 10:16:09 +02:00
10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.View.extend({
|
|
|
|
title: function() {
|
|
return this.get('controller.forumTitle');
|
|
}.property('controller.forumTitle')
|
|
|
|
});
|