Safer check with typeof !== undefined

This commit is contained in:
Rick Waldron waldron.rick@gmail.com 2012-03-06 13:12:20 -05:00
Родитель 61b1b1ffd9
Коммит 7ee019fa43
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -743,7 +743,7 @@ module( "Popcorn Prototype Methods" );
test( "deprecated method warning", function() {
// If there is no console, then this feature won't work anyway
// so there is no point in testing it
if ( !console ) {
if ( typeof console !== "undefined" ) {
expect( 3 );
var $pop = Popcorn( "#video" ),