Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 599 Bytes

deprecated-inline-view-helper.md

File metadata and controls

35 lines (20 loc) · 599 Bytes

deprecated-inline-view-helper

In Ember 1.12, support for invoking the inline View helper was deprecated.

Examples

This rule forbids the following:

{{view 'this-is-bad'}}

{{view.also-bad}}

{{qux-qaz please=view.stop}}

{{#not-this please=view.stop}}{{/not-this}}

<div foo={{view.bar}}></div>

This rule allows the following:

{{this-is-better}}

{{qux-qaz this=good}}

{{#ok-this yay=nice}}{{/ok-this}}

<div foo={{bar}}></div>

References