فهرست منبع

line width tweak

Evan You 9 سال پیش
والد
کامیت
0a3f831d67
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      src/platforms/web/runtime/modules/dom-props.js

+ 2 - 1
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
 }