framework/ember/app/controllers/application.js

24 lines
568 B
JavaScript
Raw Normal View History

2014-12-20 14:26:46 +08:00
import Ember from 'ember';
export default Ember.Controller.extend({
// The title of the forum.
// TODO: Preload this value in the index.html payload from Laravel config.
forumTitle: 'Flarum Demo Forum',
// The title of the current page. This should be set as appropriate in
// controllers/views.
pageTitle: '',
2014-12-20 14:26:46 +08:00
backButtonTarget: null,
searchQuery: '',
searchActive: false,
2014-12-20 14:26:46 +08:00
actions: {
search: function(query) {
this.transitionToRoute('index', {queryParams: {searchQuery: query, sort: query ? 'relevance' : 'recent'}});
}
}
2014-12-20 14:26:46 +08:00
});