diff options
Diffstat (limited to '.themes/classic/source/javascripts/octopress.js')
-rw-r--r-- | .themes/classic/source/javascripts/octopress.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.themes/classic/source/javascripts/octopress.js b/.themes/classic/source/javascripts/octopress.js index d6cf4d91..29df1981 100644 --- a/.themes/classic/source/javascripts/octopress.js +++ b/.themes/classic/source/javascripts/octopress.js @@ -90,7 +90,7 @@ function flashVideoFallback(){ function wrapFlashVideos() { $('object').each(function(object) { object = $(object); - if (object.children('param[name=movie]')) { + if ( $('param[name=movie]', object).length ) { var wrapper = object.before('<div class="flash-video"><div>').previous(); $(wrapper).children().append(object); } |