application.js 370 B

12345678910111213141516171819
  1. import Ember from 'ember';
  2. export default Ember.Route.extend({
  3. actions: {
  4. setTitle: function(title) {
  5. if (typeof title === "string") {
  6. title = {title: title};
  7. }
  8. var complete_title = title.title;
  9. complete_title += " | " + this.get('settings.forum_name');
  10. document.title = complete_title;
  11. return false;
  12. }
  13. }
  14. });