mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 00:03:37 +08: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')
|
|
|
|
});
|