Skip to content

Commit

Permalink
Merge pull request #311 from blimmer/bug/div-in-head-tag
Browse files Browse the repository at this point in the history
Move `paper-wormhole` div out of head tag.
  • Loading branch information
miguelcobain committed Mar 15, 2016
2 parents d8b4a50 + 72c98c0 commit d7e7198
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<head>` tag.

### 0.2.11

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
app.import('vendor/propagating.js');
},
contentFor: function(type) {
if (type === 'head') {
if (type === 'body') {
return "<div id='paper-wormhole'></div>";
}
},
Expand Down

0 comments on commit d7e7198

Please sign in to comment.