react-fileupload-progress
Version:
React component which render progress of fileupload
33 lines • 1.3 kB
HTML
<html>
<head>
<meta charset="utf-8">
<title>React fileupload progress example</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css" rel="stylesheet">
</head>
<body>
<div id="out" style="margin: 40px;"></div>
<!--[if lt IE 9]>
<script>
(function(){
var ef = function(){};
window.console = window.console || {log:ef,warn:ef,error:ef,dir:ef};
}());
</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv-printshiv.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/3.4.0/es5-shim.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/3.4.0/es5-sham.js"></script>
<![endif]-->
<script src="https://cdn.polyfill.io/v1/polyfill.min.js"></script>
<script type="text/javascript">
window.onerror = function() {
if (typeof window.console !== "undefined" && typeof window.console.log === "function") {
console.log("Uncatched error: ", arguments);
}
};
</script>
<script src="./bundle.js"></script>
</body>
</html>