From 43e3672c4eeae4cfb8439dcfce9536270e70a4c8 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Thu, 4 Jan 2024 15:38:46 +0900 Subject: [PATCH] Fix detail address not being updated when using Postcodify API --- modules/krzip/tpl/js/postcodify.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/krzip/tpl/js/postcodify.js b/modules/krzip/tpl/js/postcodify.js index 1720f529d..3e06ed895 100644 --- a/modules/krzip/tpl/js/postcodify.js +++ b/modules/krzip/tpl/js/postcodify.js @@ -36,6 +36,10 @@ ui.detailAddress.addClass("postcodify_details"); ui.extraAddress.addClass("postcodify_extra_info"); + ui.detailAddress.on('change', function() { + values.detailAddress.val(ui.detailAddress.val()); + }); + ui.search.postcodifyPopUp({ inputParent : $this, useFullJibeon : false,