17 lines
384 B
JavaScript
Executable File
17 lines
384 B
JavaScript
Executable File
var $j = jQuery.noConflict();
|
|
|
|
$j( document ).ready( function() {
|
|
"use strict";
|
|
// Responsive Video
|
|
oceanwpInitFitVids();
|
|
} );
|
|
|
|
/* ==============================================
|
|
RESPONSIVE VIDEOS
|
|
============================================== */
|
|
function oceanwpInitFitVids() {
|
|
"use strict"
|
|
|
|
$j( '.responsive-video-wrap, .responsive-audio-wrap' ).fitVids();
|
|
|
|
} |