Skip to content

Commit

Permalink
Move the 'Standard' comment to the correct line
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Blum committed Dec 15, 2011
1 parent af29d44 commit 65c6856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/javascript/plupload.html5.js
Expand Up @@ -220,8 +220,8 @@
var types = plupload.toArray(dataTransfer.types || []);
return types.indexOf("public.file-url") !== -1 || // Safari < 5
types.indexOf("application/x-moz-file") !== -1 || // Gecko < 1.9.2 (< Firefox 3.6)
types.indexOf("Files") !== -1 ||
types.length === 0; // Standard
types.indexOf("Files") !== -1 || // Standard
types.length === 0;
}

function addSelectedFiles(native_files) {
Expand Down

0 comments on commit 65c6856

Please sign in to comment.