IET-OU / nquire-web-source

Join missions to explore your world. The nQuire-it web source code (front end & Java back end) —
http://www.nquire-it.org
GNU General Public License v3.0
2 stars 2 forks source link

Ensure users can just upload image files — usability #66

Open nfreear opened 6 years ago

nfreear commented 6 years ago

You can use the accept attribute on <input type=file> to limit the type of files that can be uploaded:

<input
  type="file"
  accept=".jpg,image/*"
  onchange="angular.element(this).scope().fileChosen(this.files[0])"
/>

Useful!

N.