diff --git a/CHANGELOG.md b/CHANGELOG.md index ccf1bae1d..03a68bfaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - [#307](https://github.com/miguelcobain/ember-paper/pull/307) Add paper-card title components - [#283](https://github.com/miguelcobain/ember-paper/pull/283) Adds support for `fullTextSearch` attribute on `{{paper-autocomplete}}`. Enables passing Promises to the `model` attribute on `{{paper-autocomplete}}`. Docs updated. +- [#311](https://github.com/miguelcobain/ember-paper/pull/311) Fixed issue with `paper-wormhole` div in `` tag. ### 0.2.11 diff --git a/index.js b/index.js index 66ec9808a..22ce7b09c 100644 --- a/index.js +++ b/index.js @@ -17,7 +17,7 @@ module.exports = { app.import('vendor/propagating.js'); }, contentFor: function(type) { - if (type === 'head') { + if (type === 'body') { return "
"; } },