jce-manager/assets/js/index.js
2014-09-11 15:49:20 +03:00

29 lines
748 B
JavaScript
Executable file

/**
* 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('<figure class="image"></figure>')
.after('<figcaption>'+$(this).attr("alt")+'</figcaption>');
});
});
}(jQuery));