12345678910111213141516171819202122232425262728293031 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define("/pages/gallery", ["jquery", "Site"], factory);
- } else if (typeof exports !== "undefined") {
- factory(require("jquery"), require("Site"));
- } else {
- var mod = {
- exports: {}
- };
- factory(global.jQuery, global.Site);
- global.pagesGallery = mod.exports;
- }
- })(this, function (_jquery, _Site) {
- "use strict";
- _jquery = babelHelpers.interopRequireDefault(_jquery);
- (0, _jquery.default)(document).ready(function ($$$1) {
- (0, _Site.run)();
- $$$1('.wb-search').magnificPopup({
- type: 'image',
- closeOnContentClick: true,
- mainClass: 'mfp-fade',
- gallery: {
- enabled: true,
- navigateByImgClick: true,
- preload: [0, 1] // Will preload 0 - before current, and 1 after the current image
- }
- });
- });
- });
|