소스 검색

Fix x-mask restoreCursorPosition initialization issue

Caleb Porzio 2 년 전
부모
커밋
d02bb8babc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/mask/src/index.js

+ 2 - 2
packages/mask/src/index.js

@@ -33,10 +33,10 @@ export default function (Alpine) {
                     // - Initializing the mask on the input if it has an initial value.
                     // - Running the template function to set up reactivity, so that
                     //   when a dependency inside it changes, the input re-masks.
-                    processInputValue(el)
+                    processInputValue(el, false)
                 })
             } else {
-                processInputValue(el)
+                processInputValue(el, false)
             }
 
             // Override x-model's initial value...