shmakes / hf-basic

HF Basic UI
Apache License 2.0
2 stars 2 forks source link

Trim white space from more text inputs on edit forms #166

Closed shmakes closed 6 years ago

shmakes commented 7 years ago

Especially the name fields.

shmakes commented 6 years ago
for (var p in f) {
  if (f.hasOwnProperty(p)) {
    f[p] = f[p].trim();
  }
}