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