Skip to content

Instantly share code, notes, and snippets.

View fducom's full-sized avatar
🎯
Focusing

Dima fducom

🎯
Focusing
View GitHub Profile
@fducom
fducom / gist:15fe3a2743f3a9b79c7c04cfd61ab210
Created November 28, 2017 23:02 — forked from bradgorman/gist:4247000
JavaScript - iOS/Safari Photo Upload, Manipulation
<!DOCTYPE html>
<html>
<head>
<title>iOS6 Safari Photo Capture Demo</title>
<script type="text/javascript">
window.onload = function() {
var input = document.getElementById("input");
input.addEventListener("change", handleFile);
}