![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ember-page-title
Advanced tools
This addon provides a helper for changing the title of the page you're on.
ember install ember-page-title
As of v3.0.0 this addon maintains the page title by using the <title>
tag in your document's <head>
. This is necessary for FastBoot compatibility.
Non-fastboot apps should keep the <title>
tag in index.html to ensure that the initial page is valid HTML. The title will be removed and replaced when your app boots.
Fastboot apps MUST remove the <title>
tag from index.html.
When working with other addons that use ember-cli-head
, you'll need to create a custom head.hbs
file that exposes the <title>
tag properly:
<title>{{model.title}}</title>
This file is added automatically if you use ember install
. This is for all the folks using ember-cli-head addons like ember-cli-meta-tags.
attribute | type | default | description |
---|---|---|---|
separator | string | " | " | Which separator should be displayed after this instance of {{title }} |
prepend | boolean | true | If the token should be prepended or appended to the list of tokens |
replace | boolean | false | Replace all previous elements with the active |
front | boolean | false | If the token should always be in the beginning of the resulting title. |
These defaults are configurable in config/environment.js
:
// config/environment.js
/* jshint node: true */
module.exports = function(environment) {
var ENV = {
pageTitle: {
replace: true
}
};
return ENV;
};
From 4.x onward, you need to have {{head-layout}}
within your application's application.hbs
template. Without this, you will not see a page title appear.
See the 4.0.0 release notes for more detail.
Contributors are welcome! Please provide a reproducible test case. Details will be worked out on a case-per-case basis. Maintainers will get in touch when they can, so delays are possible. For contribution guidelines, see the code of conduct.
To publish documentation, run the following command:
ember github-pages:commit --message "update documentation"
git push origin gh-pages:gh-pages
FAQs
Page Titles for Ember applications
The npm package ember-page-title receives a total of 41,726 weekly downloads. As such, ember-page-title popularity was classified as popular.
We found that ember-page-title demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.