mirror of
https://github.com/GenZmeY/casper-i18n.git
synced 2024-11-10 10:28:04 +00:00
15 lines
206 B
JavaScript
15 lines
206 B
JavaScript
/**
|
|
* Main JS file for Casper behaviours
|
|
*/
|
|
|
|
/*globals jQuery, document */
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
$(document).ready(function(){
|
|
|
|
$(".post-content").fitVids();
|
|
|
|
});
|
|
|
|
}(jQuery)); |