fix compatibility check
Tara L Andrews [Tue, 18 Sep 2012 21:21:25 +0000 (23:21 +0200)]
root/js/componentload.js

index 243d8f7..522c879 100644 (file)
@@ -299,7 +299,7 @@ function _get_url( els ) {
 $(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();
        }