We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a581c0 commit d71c140Copy full SHA for d71c140
assets/script/index.js
@@ -244,4 +244,17 @@ body.querySelector('form').onreset = function() {
244
behavior: 'smooth'
245
});
246
247
-};
+};
248
+
249
250
+for (let text of footer.querySelectorAll('form > div > label > input[type="text"]')) {
251
252
+ text.onblur = function() { // Standardize the message
253
254
+ this.value = this.value.trim();
255
256
+ this.value = this.value.split(',').map(e => e.trim()).filter(e => e).join(', ');
257
258
+ };
259
260
+}
0 commit comments