fix check for webm support, which had logic reversed
This commit is contained in:
		@ -190,7 +190,7 @@ $(document).ready(function() {
 | 
			
		||||
            if (!Modernizr.video) {
 | 
			
		||||
                $('<div id="video-unsupported"><p>Sorry, your browser doesn\'t support the HTML5 <video> element!</p><p>Here\'s a <a href="http://caniuse.com/video">list of which browsers do</a>.</p></div>').appendTo('#video-box-inner');
 | 
			
		||||
            }
 | 
			
		||||
            else if (Modernizr.video.webm) {
 | 
			
		||||
            else if (!Modernizr.video.webm) {
 | 
			
		||||
                $('<div id="video-unsupported"><p>Sorry, your browser doesn\'t support the WebM video format!</p></div>').appendTo('#video-box-inner');
 | 
			
		||||
            }
 | 
			
		||||
            else {
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user