15 lines
No EOL
206 B
JavaScript
15 lines
No EOL
206 B
JavaScript
/**
|
|
* Main JS file for Casper behaviours
|
|
*/
|
|
|
|
/*globals jQuery, document */
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
$(document).ready(function(){
|
|
|
|
$(".post-content").fitVids();
|
|
|
|
});
|
|
|
|
}(jQuery)); |