This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Resizer = function() { | |
var maxWidth = 0, maxHeight = 0; | |
var canvas = document.createElement('canvas'); | |
var img = new Image(); | |
var callback; | |
var isFileOk = function(file) { | |
if (!file || !file.type.match(/image.*/)) { | |
return false; |