Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: blog_single.js
/* ------------------------------------------------------------------------------ * * # Blog page - detailed * * Demo JS code for blog page kit - detailed view * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var BlogSingle = function() { // // Setup module components // // Summernote var _componentSummernote = function() { if (!$().summernote) { console.warn('Warning - summernote.min.js is not loaded.'); return; } // Default initialization $('#add-comment').summernote(); }; // 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() { _componentSummernote(); _componentFancybox(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { BlogSingle.init(); });