Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 687 Bytes

File metadata and controls

24 lines (15 loc) · 687 Bytes

ember/template-no-input-block

Use of the block form of the handlebars input helper will result in an error at runtime.

Examples

This rule forbids the following:

<template>{{#input}}Some Content{{/input}}</template>

This rule allows the following:

<template>{{input type='text' value=this.firstName disabled=this.entryNotAllowed size='50'}}</template>

References