From 4e4e06898a32bd4fec05e9fa54c6d2026be94093 Mon Sep 17 00:00:00 2001 From: mhartington Date: Thu, 23 Mar 2017 08:44:10 -0500 Subject: [PATCH] docs(alert): fix input table --- src/components/alert/alert.ts | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/src/components/alert/alert.ts b/src/components/alert/alert.ts index 33490002c8..8488ae57ec 100644 --- a/src/components/alert/alert.ts +++ b/src/components/alert/alert.ts @@ -241,21 +241,17 @@ export class Alert extends ViewController { * * Input options * - * | Property | Type | Description | - * |-------------|-----------|-----------------------------------------------------------------| - * | type | `string` | The type the input should be: text, tel, number, etc. | - * | name | `string` | The name for the input. | - * | placeholder | `string` | The input's placeholder (for textual/numeric inputs) | - * | value | `string` | The input's value. | - * | label | `string` | The input's label (only for radio/checkbox inputs) | - * | checked | `boolean` | Whether or not the input is checked. | - * | id | `string` | The input's id. | - * | min | `string | number` | The input's minimum authorized value (string only for date inputs, number - * only for number inputs) - * | - * | max | `string | number` | The input's maximum authorized value (string only for date inputs, number - * only for number inputs) - * | + * | Property | Type | Description | + * |-------------|-----------------|---------------------------------------------------------------------------------------------------| + * | type | `string` | The type the input should be: text, tel, number, etc. | + * | name | `string` | The name for the input. | + * | placeholder | `string` | The input's placeholder (for textual/numeric inputs) | + * | value | `string` | The input's value. | + * | label | `string` | The input's label (only for radio/checkbox inputs) | + * | checked | `boolean` | Whether or not the input is checked. | + * | id | `string` | The input's id. | + * | min | `string/number` | The input's minimum authorized value (string only for date inputs, number only for number inputs) | + * | max | `string/number` | The input's maximum authorized value (string only for date inputs, number only for number inputs) | * * Button options *