framework/ember/app/views/application.js
2014-12-20 16:56:46 +10:30

10 lines
187 B
JavaScript

import Ember from 'ember';
export default Ember.View.extend({
title: function() {
return this.get('controller.forumTitle');
}.property('controller.forumTitle')
});