/** * Title: Video JS * * Description: Adds class to video iframe to make it responsive. * * Please do not edit this file. This file is part of the Cyber Chimps Framework and all modifications * should be made in a child theme. * * @category Cyber Chimps Framework * @package Framework * @since 1.0 * @author CyberChimps * @license http://web.archive.orghttp://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later) * @link http://web.archive.orghttp://www.cyberchimps.com/ */ // Add class to video iframe jQuery(document).ready(function($) { jQuery("iframe[src^='http://web.archive.orghttp://www.youtube.com/']").wrap("
"); jQuery("iframe[src^='http://web.archive.orghttp://player.vimeo.com/']").wrap("
"); jQuery("embed[type^='application/x-shockwave-flash']").wrap("
"); });