$(document).ready( function() {
// See if we have the browser functionality we need
// TODO Also think of a test for SVG readiness
- if( typeof window.FileReader && typeof window.File ) {
+ if( !!window.FileReader && !!window.File ) {
$('#compatibility_check').empty();
}