generator-fe-kit
Version:
Pixelant Front-End Starter Kit
23 lines (17 loc) • 527 B
JavaScript
// ########## general.js ###########
(function($) {
'use strict';
// document load event
$(document).ready(function() {
// Image Lightbox
// initialize simpleLightbox when document ready
// https://github.com/andreknieriem/simplelightbox
$('.lightbox').simpleLightbox({
captionType: 'data',
captionsData: 'caption',
captionPosition: 'outside',
heightRatio: 0.6
});
});
})(jQuery);
// ^^^^^^^^^^ general.js ^^^^^^^^^^^