Changeset 3329110
- Timestamp:
- 07/16/2025 01:44:20 PM (9 months ago)
- Location:
- postcode-eu-address-validation/trunk
- Files:
-
- 4 edited
-
assets/js/postcode-eu-autofill.js (modified) (1 diff)
-
postcode-eu-address-validation.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/PostcodeNl/AddressAutocomplete/Main.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
postcode-eu-address-validation/trunk/assets/js/postcode-eu-autofill.js
r3328176 r3329110 157 157 { 158 158 const field = addressFields[addressPart].val(values[addressPart])[0]; 159 field.dispatchEvent(new Event('change' ));159 field.dispatchEvent(new Event('change', {bubbles: true})); 160 160 } 161 161 } -
postcode-eu-address-validation/trunk/postcode-eu-address-validation.php
r3328176 r3329110 4 4 * Plugin URI: https://www.postcode.eu/products/address-api/implementation 5 5 * Description: Address autocomplete and validation using the Postcode.eu API. 6 * Version: 2.6. 26 * Version: 2.6.3 7 7 * Author: Postcode.nl 8 8 * Author URI: https://www.postcode.nl -
postcode-eu-address-validation/trunk/readme.txt
r3328176 r3329110 2 2 Contributors: postcodenl 3 3 Tags: address validation, address autocomplete, postcode api, address api, postcode check 4 Stable tag: 2.6. 24 Stable tag: 2.6.3 5 5 Tested up to: 6.8 6 6 License: FreeBSD license … … 87 87 == Changelog == 88 88 89 = 2.6.3 = 90 * Fix compatibility with Divi checkout. 91 89 92 = 2.6.2 = 90 93 * Fix usage of potentially uninitialized shipping address. -
postcode-eu-address-validation/trunk/src/PostcodeNl/AddressAutocomplete/Main.php
r3328176 r3329110 15 15 16 16 /** @var string The version number of the plugin should be equal to the commented version number in ../../../postcode-eu-address-validation.php */ 17 public const VERSION = '2.6. 2';17 public const VERSION = '2.6.3'; 18 18 19 19 /** @var string Script handle of the autocomplete library. */
Note: See TracChangeset
for help on using the changeset viewer.