Skip to content

Instantly share code, notes, and snippets.

@Minasokoni
Created June 10, 2014 16:45
Show Gist options
  • Save Minasokoni/d6819774822a1ba64586 to your computer and use it in GitHub Desktop.
Save Minasokoni/d6819774822a1ba64586 to your computer and use it in GitHub Desktop.
Update document title
App.ArtistSongsRoute = Ember.Route.extend({
(...)
afterModel: function(model) {
var artistName = this.modelFor('artist').get('name');
$(document).attr('title', artistName + ' songs - Rock & Roll');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment