From 0a3f831d67a17a5e3d47aa849f4a6ef085922f01 Mon Sep 17 00:00:00 2001 From: Evan You Date: Tue, 13 Jun 2017 14:33:35 +0800 Subject: [PATCH] line width tweak --- src/platforms/web/runtime/modules/dom-props.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/platforms/web/runtime/modules/dom-props.js b/src/platforms/web/runtime/modules/dom-props.js index 99d167dd..56416f64 100644 --- a/src/platforms/web/runtime/modules/dom-props.js +++ b/src/platforms/web/runtime/modules/dom-props.js @@ -61,7 +61,8 @@ function shouldUpdateValue ( } function isDirty (elm: acceptValueElm, checkVal: string): boolean { - // return true when textbox (.number and .trim) loses focus and its value is not equal to the updated value + // return true when textbox (.number and .trim) loses focus and its value is + // not equal to the updated value return document.activeElement !== elm && elm.value !== checkVal }