From a3283a92d3889410f25609907ea6b468e24147fb Mon Sep 17 00:00:00 2001 From: Jack OConnor Date: Wed, 4 Dec 2024 17:13:00 +0000 Subject: [PATCH] Fix version numbers in readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0cf1f2616..ef07ed2b5 100644 --- a/README.md +++ b/README.md @@ -75,16 +75,16 @@ _Note: We have now dropped support for all versions of Internet Explorer because ## Getting Started (Using a CDN) 1. Add the CSS ```html - + ``` 2. Add the plugin script and initialise it on your input element ```html - + ``` @@ -317,7 +317,7 @@ The `loadUtils` option takes a function which returns a Promise which resolves t ```js // (A) import utils module from a CDN intlTelInput(htmlInputElement, { - loadUtils: () => import("https://cdn.jsdelivr.net/npm/intl-tel-input@24.8.1/build/js/utils.js"), + loadUtils: () => import("https://cdn.jsdelivr.net/npm/intl-tel-input@24.8.2/build/js/utils.js"), }); // (B) import utils module from your own hosted version of utils.js @@ -598,7 +598,7 @@ The `loadUtils` option takes a function which returns a Promise which resolves t ```js // (A) import utils module from a CDN intlTelInput(htmlInputElement, { - loadUtils: () => import("https://cdn.jsdelivr.net/npm/intl-tel-input@24.8.1/build/js/utils.js"), + loadUtils: () => import("https://cdn.jsdelivr.net/npm/intl-tel-input@24.8.2/build/js/utils.js"), }); // (B) import utils module from your own hosted version of utils.js