Hacked By AnonymousFox

Current Path : /home/krishnamexports/public_html/panel/global_assets/js/demo_pages/
Upload File :
Current File : /home/krishnamexports/public_html/panel/global_assets/js/demo_pages/gallery.js

/* ------------------------------------------------------------------------------
 *
 *  # Media gallery
 *
 *  Demo JS code for gallery page kit
 *
 * ---------------------------------------------------------------------------- */


// Setup module
// ------------------------------

var Gallery = function() {


    //
    // Setup module components
    //

    // Lightbox
    var _componentFancybox = function() {
        if (!$().fancybox) {
            console.warn('Warning - fancybox.min.js is not loaded.');
            return;
        }

        // Image lightbox
        $('[data-popup="lightbox"]').fancybox({
            padding: 3
        });
    };


    //
    // Return objects assigned to module
    //

    return {
        init: function() {
            _componentFancybox();
        }
    }
}();


// Initialize module
// ------------------------------

document.addEventListener('DOMContentLoaded', function() {
    Gallery.init();
});

Hacked By AnonymousFox1.0, Coded By AnonymousFox