2.0.3 • Published 9 years ago

ember-document-title v2.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

{{title}} Ember Observer Score Build Status Code Climate

This addon provides a helper for changing the title of the page you're on.

Installing via ember-cli

ember-document-title follows the release format provided in The Ember 2.x Project. For support of Ember versions below 1.13, please use 1.1.11:

ember install ember-document-title@1.1.11

For any other app, follow the scheme outlined in the blog post. Previous versions of the addon may work with newer versions of Ember, but that is not guaranteed-- YMMV. If you're on the latest stable release of Ember, you may install the addon without a version number.

ember install ember-document-title

Usage

To start, let's add a root title for your application. This goes in application.hbs.

{{title "My App"}}

This sets the title for your application. When your application loads, you should see the title My App appear.

By default, using the helper will allow an interaction where additional titles are appended to the root:

Defaults

You can change the separator by specifying the separator attribute.

Custom Separator

Separators can be changed at arbitrary levels:

Custom Separator

Titles can be prepended to the parent, by setting the prepend attribute to true.

Prepend

This allows one to swap the order at arbitrary levels:

Nested Prepend

And for special templates that need to complete control over the title, set the replace attribute to true. This will only apply for that level.

Replace

In addition, there's no limit to the amount of titles you can put in a route:

Replace

Dynamic tokens are available by providing multiple parameters to the helper:

Replace

API

attributetypedefault
separatorstring" | "
prependbooleanfalse
replacebooleanfalse

The default value for the separator can be overridden by extending the service that stores the list of titles:

// app/services/document-title-list.js
import DocumentTitleList from 'ember-document-title/services/document-title-list';

export default DocumentTitleList.extend({
  defaultSeparator: ' > '
});
2.0.3

9 years ago

2.0.1

9 years ago

2.0.0

9 years ago

2.0.0-beta

9 years ago

1.13.0

9 years ago

1.1.11

9 years ago

1.1.10

9 years ago

1.1.9

9 years ago

1.1.8

9 years ago

1.1.7

9 years ago

1.1.6

9 years ago

1.1.5

9 years ago

1.1.4

9 years ago

1.1.3

9 years ago

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.1.2

10 years ago