29 lines
No EOL
748 B
JavaScript
Executable file
29 lines
No EOL
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)); |