Skip to content

Glimbo

Compare
Choose a tag to compare
@lukemelia lukemelia released this 30 Nov 15:45
· 52 commits to master since this release

Merged pull requests:

  • Fix some issues with Glimmer2 usage. #75 (rwjblue)

Note: This release is the first that is compatible with Ember 2.10 (Glimmer 2). However, there is a caveat:

With latest ember-wormhole and ember@2.10, you need to have a stable root element inside the wormhole block. This is something that the Ember Core team will continue to iterate and work on, but for now the work around is fairly straightforward.

Change:

{{#ember-wormhole to="worm"}}
  {{#if foo}}

  {{/if}}
  <p>Other content, whatever</p>
{{/ember-wormhole}}
To:

{{#ember-wormhole to="worm"}}
  <div>
    {{#if foo}}

    {{/if}}
    <p>Other content, whatever</p>
  </div>
{{/ember-wormhole}}