UNPKG

ember-cli-meta-tags

Version:
23 lines (17 loc) 396 B
import Router from '@ember/routing/router'; import { inject as service } from '@ember/service'; export function initialize() { Router.reopen({ headTags: service(), init() { this._super(...arguments); this.headTags.router = this; this.on('routeDidChange', () => { this.headTags.collectHeadTags(); }); }, }); } export default { initialize, };