2013-05-11 06:16:11 -04:00
|
|
|
/**
|
2013-08-25 20:35:53 -04:00
|
|
|
* Main JS file for Casper behaviours
|
2013-05-11 06:16:11 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*globals jQuery, document */
|
|
|
|
(function ($) {
|
|
|
|
"use strict";
|
|
|
|
|
2013-08-20 12:53:02 -04:00
|
|
|
$(document).ready(function(){
|
|
|
|
|
2013-10-31 13:35:57 -04:00
|
|
|
$(".post-content").fitVids();
|
2013-08-25 20:35:53 -04:00
|
|
|
|
2013-05-11 06:16:11 -04:00
|
|
|
});
|
2013-08-20 12:53:02 -04:00
|
|
|
|
2013-05-11 06:16:11 -04:00
|
|
|
}(jQuery));
|