2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-27 14:45:28 +03:00

Replace "binded" with "bound"

This commit is contained in:
Ilya Semenov
2024-02-13 13:56:56 +07:00
parent 18191d23ef
commit a38e8a2512
9 changed files with 37 additions and 37 deletions
+4 -4
View File
@@ -31,11 +31,11 @@ export const vMaska: MaskaDirective = (el, binding) => {
}
if (binding.value != null) {
const binded = binding.value
const bound = binding.value
const onMaska = (detail: MaskaDetail): void => {
binded.masked = detail.masked
binded.unmasked = detail.unmasked
binded.completed = detail.completed
bound.masked = detail.masked
bound.unmasked = detail.unmasked
bound.completed = detail.completed
}
opts.onMaska =