From 4455f77f8e654b46e801a2988c7866fbf05b9e31 Mon Sep 17 00:00:00 2001 From: Gerard Date: Thu, 19 Apr 2018 14:48:38 +0200 Subject: [PATCH] #230 refactor de tabIndex debido al refactor de icon-button --- client/core/src/components/textfield/textfield.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/client/core/src/components/textfield/textfield.js b/client/core/src/components/textfield/textfield.js index feb5b98a9..56fc23955 100644 --- a/client/core/src/components/textfield/textfield.js +++ b/client/core/src/components/textfield/textfield.js @@ -24,9 +24,11 @@ export default class Textfield extends Input { this.hasValue = Boolean(this._value); this.mdlUpdate(); } - set tabIndex(value) { - this.input.tabIndex = value; + + set vnTabIndex(value) { + this.input.tabindex = value; } + clear() { this.value = null; this.input.focus(); @@ -49,6 +51,6 @@ ngModule.component('vnTextfield', { readonly: '