/**
* Main JS file for Casper behaviours
*/
/*globals jQuery, document */
(function ($) {
"use strict";
$(document).ready(function(){
$(".post-content").fitVids();
// Calculates Reading Time
$('.post-content').readingTime({
readingTimeTarget: '.post-reading-time',
wordCountTarget: '.post-word-count',
});
// Creates Captions from Alt tags
$(".post-content img").each(function() {
// Let's put a caption if there is one
if($(this).attr("alt"))
$(this).wrap('')
.after(''+$(this).attr("alt")+'');
});
});
}(jQuery));