kimroen/ember-cli-document-title

View on GitHub
index.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

module.exports = {
  name: 'ember-cli-document-title',

  included: function(app) {
    // see: https://github.com/ember-cli/ember-cli/issues/3718
    if (typeof app.import !== 'function' && app.app) {
      app = app.app;
    }

    app.import('vendor/document-title/document-title.js');
  }
};