Skip to content

Commit 86ffde3

Browse files
author
Imani Manyara
committed
Bug fixes
1 parent c236cdb commit 86ffde3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

resources/assets/js/laraphone.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ if (typeof window.intlTelInput !== 'function') {
100100
} else {
101101
if (typeof options.geoIpLookup !== 'function') {
102102
throw new TypeError(
103-
`laraphone: Undefined function '${options.geoIpLookup}' specified in tel-input.options.geoIpLookup.`
103+
`Laraphone: Undefined function '${options.geoIpLookup}' specified in tel-input.options.geoIpLookup.`
104104
);
105105
}
106106
delete options.geoIpLookup; // unset if undefined function
@@ -116,7 +116,7 @@ if (typeof window.intlTelInput !== 'function') {
116116
} else {
117117
if (typeof options.customPlaceholder !== 'function') {
118118
throw new TypeError(
119-
`laraphone: Undefined function '${options.customPlaceholder}' specified in tel-input.options.customPlaceholder.`
119+
`Laraphone: Undefined function '${options.customPlaceholder}' specified in tel-input.options.customPlaceholder.`
120120
);
121121
}
122122
delete options.customPlaceholder; // unset if undefined function
@@ -293,7 +293,6 @@ if (typeof window.intlTelInput !== 'function') {
293293
renderTelInput();
294294
});
295295
}
296-
297296
});
298297
//
299298
})();

0 commit comments

Comments
 (0)