File manager - Edit - /home/ferretapmx/public_html/js.zip
Back
PK �h�\��zak k speasygallery-main.jsnu �[��� /** * @package com_speasyimagegallery * @author JoomShaper http://www.joomshaper.com * @copyright Copyright (c) 2010 - 2025 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later */ ;(function($){ $(document).on('click', '.speasyimagegallery-gallery-item', function(event) { event.preventDefault(); var spdata = $(this).closest('.speasyimagegallery-gallery'); $(this).speasyimagegallery({ showTitle: spdata.data('showtitle'), showDescription: spdata.data('showdescription'), showCounter: spdata.data('showcounter') }); }); })(jQuery); PK �h�\�<�� � script.jsnu �[��� /** * @package com_speasyimagegallery * @author JoomShaper http://www.joomshaper.com * @copyright Copyright (c) 2010 - 2025 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later */ ;(function($){ $.fn.speasyimagegallery = function(options) { var settings = { 'showCounter': true, 'showTitle': true, 'showDescription': true, 'parent': '.speasyimagegallery-gallery' }; this.each(function() { if (options) { $.extend(settings, options); } var item = this; var speasyimagegallery = function(){ this.items = $(item).closest(settings.parent).find(item.nodeName); this.count = (this.items.length) - 1; this.index = this.items.index(item); this.navPrev = ''; this.navNext = ''; this.loaded = false; this.naturalWidth = 0; this.naturalHeight = 0; this.init = function() { this.modal(); this.goto(this.index); var that = this; this.navNext.on('click', function(event) { event.preventDefault(); that.next(); }); $(document).on('click', '.speasyimagegallery-image', function(event){ event.preventDefault(); that.next(); }); $(document).on('click', '.speasyimagegallery-modal-wrapper, .speasyimagegallery-close', function(event){ if (event.target !== this) { return; } event.preventDefault(); that.close(); }); $(document).on('keyup', function(event) { if(event.keyCode == 39) { event.preventDefault(); that.next(); } if(event.keyCode == 37) { event.preventDefault(); that.prev(); } if(event.keyCode == 27) { event.preventDefault(); that.close(); } }) this.navPrev.on('click', function(event) { event.preventDefault(); that.prev(); }); $(window).on('resize', function() { var dimension = that.resize(); $('.speasyimagegallery-modal').css({ width: dimension.width, height: dimension.height }); }); } this.modal = function() { $('<div id="speasyimagegallery-modal" class="speasyimagegallery-modal-wrapper"><a href="#" class="speasyimagegallery-prev"><span></span></a><a href="#" class="speasyimagegallery-next"><span></span></a><div class="speasyimagegallery-modal"><a href="#" class="speasyimagegallery-close speasyimagegallery-hidden">×</a><div class="speasyimagegallery-modal-body"></div></div></div>').appendTo($('body').addClass('speasyimagegallery-modal-open')); this.modal = $('#speasyimagegallery-modal'); this.navNext = this.modal.find('.speasyimagegallery-next'); this.navPrev = this.modal.find('.speasyimagegallery-prev'); } this.close = function() { this.index = 0; this.loaded = true; this.naturalWidth = 0; this.naturalHeight = 0; $('#speasyimagegallery-modal').fadeOut(function() { $(this).remove(); }); $('.speasyimagegallery-modal').animate({ width: 100, height: 100 }, 300, function() { $(this).remove(); $('body').removeClass('speasyimagegallery-modal-open') }); } // Resize modal window this.resize = function() { var maxWidth = ($(window).width()) - 80; var maxHeight = ($(window).height()) - 80; var ratio = 0; var width = this.naturalWidth; var height = this.naturalHeight; if(width > maxWidth){ ratio = maxWidth / width; height = height * ratio; width = width * ratio; } if(height > maxHeight){ ratio = maxHeight / height; width = width * ratio; height = height * ratio; } return { 'width': width, 'height': height } } // Go to next this.next = function() { if (this.index < this.count) { this.index = this.index + 1; } else { this.index = 0; } this.goto(this.index); } // Go to Prev this.prev = function() { if (this.index > 0) { this.index = this.index -1; } else { this.index = this.count; } this.goto(this.index); } // Go to index this.goto = function(index) { if(this.loaded === false) { var that = this; var $item = $(this.items[index]); that.loaded = true; $('.speasyimagegallery-modal-body').html('<div class="speasyimagegallery-gallery-loading"></div>'); var img = $("<img />").attr('src', $item.attr('href')).on('load', function() { if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) { } else { that.naturalWidth = this.naturalWidth; that.naturalHeight = this.naturalHeight; var dimension = that.resize(); $('.speasyimagegallery-modal').animate({ width: dimension.width, height: dimension.height }, 300, function() { var galleryHtml = '<div class="speasyimagegallery-image-wrapper">'; galleryHtml += '<img class="speasyimagegallery-image" src="'+ img[0].src +'" alt="'+ $item.attr('data-alt') +'">'; if((settings.showCounter) || (settings.showTitle && $item.attr('data-title')) || (settings.showDescription && $item.attr('data-desc'))) { if($item.attr('data-title') || $item.attr('data-description')) { galleryHtml += '<div class="speasyimagegallery-image-content">'; if(settings.showCounter){ galleryHtml += '<span class="speasyimagegallery-gallery-stat">'+ (that.index + 1) + ' of ' + (that.count + 1) +'</span>'; } if(settings.showTitle && $item.attr('data-title')) { galleryHtml += '<span class="speasyimagegallery-image-title">'+ $item.attr('data-title') +'</span>'; } if(settings.showDescription && $item.attr('data-desc')) { galleryHtml += '<div class="speasyimagegallery-image-description">'+ $item.attr('data-desc') +'</div>'; } galleryHtml += '</div>'; } } galleryHtml += '</div>' $('.speasyimagegallery-modal-body').html(galleryHtml); that.modal.find('.speasyimagegallery-hidden').removeClass('speasyimagegallery-hidden'); that.loaded = false; }); } }); } } } new speasyimagegallery().init(); }); } })(jQuery); PK �h�\�� � script-min.jsnu �[��� /** * @package com_speasyimagegallery * @author JoomShaper http://www.joomshaper.com * @copyright Copyright (c) 2010 - 2025 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later */ !function(a){a.fn.speasyimagegallery=function(b){var c={showCounter:!0,showTitle:!0,showDescription:!0,parent:".speasyimagegallery-gallery"};this.each(function(){b&&a.extend(c,b);var d=this,e=function(){this.items=a(d).closest(c.parent).find(d.nodeName),this.count=this.items.length-1,this.index=this.items.index(d),this.navPrev="",this.navNext="",this.loaded=!1,this.naturalWidth=0,this.naturalHeight=0,this.init=function(){this.modal(),this.goto(this.index);var b=this;this.navNext.on("click",function(a){a.preventDefault(),b.next()}),a(document).on("click",".speasyimagegallery-image",function(a){a.preventDefault(),b.next()}),a(document).on("click",".speasyimagegallery-modal-wrapper, .speasyimagegallery-close",function(a){a.target===this&&(a.preventDefault(),b.close())}),a(document).on("keyup",function(a){39==a.keyCode&&(a.preventDefault(),b.next()),37==a.keyCode&&(a.preventDefault(),b.prev()),27==a.keyCode&&(a.preventDefault(),b.close())}),this.navPrev.on("click",function(a){a.preventDefault(),b.prev()}),a(window).on("resize",function(){var c=b.resize();a(".speasyimagegallery-modal").css({width:c.width,height:c.height})})},this.modal=function(){a('<div id="speasyimagegallery-modal" class="speasyimagegallery-modal-wrapper"><a href="#" class="speasyimagegallery-prev"><span></span></a><a href="#" class="speasyimagegallery-next"><span></span></a><div class="speasyimagegallery-modal"><a href="#" class="speasyimagegallery-close speasyimagegallery-hidden">×</a><div class="speasyimagegallery-modal-body"></div></div></div>').appendTo(a("body").addClass("speasyimagegallery-modal-open")),this.modal=a("#speasyimagegallery-modal"),this.navNext=this.modal.find(".speasyimagegallery-next"),this.navPrev=this.modal.find(".speasyimagegallery-prev")},this.close=function(){this.index=0,this.loaded=!0,this.naturalWidth=0,this.naturalHeight=0,a("#speasyimagegallery-modal").fadeOut(function(){a(this).remove()}),a(".speasyimagegallery-modal").animate({width:100,height:100},300,function(){a(this).remove(),a("body").removeClass("speasyimagegallery-modal-open")})},this.resize=function(){var b=a(window).width()-80,c=a(window).height()-80,d=0,e=this.naturalWidth,f=this.naturalHeight;return e>b&&(d=b/e,f*=d,e*=d),f>c&&(d=c/f,e*=d,f*=d),{width:e,height:f}},this.next=function(){this.index<this.count?this.index=this.index+1:this.index=0,this.goto(this.index)},this.prev=function(){this.index>0?this.index=this.index-1:this.index=this.count,this.goto(this.index)},this.goto=function(b){if(this.loaded===!1){var d=this,e=a(this.items[b]);d.loaded=!0,a(".speasyimagegallery-modal-body").html('<div class="speasyimagegallery-gallery-loading"></div>');var f=a("<img />").attr("src",e.attr("href")).on("load",function(){if(this.complete&&"undefined"!=typeof this.naturalWidth&&0!=this.naturalWidth){d.naturalWidth=this.naturalWidth,d.naturalHeight=this.naturalHeight;var b=d.resize();a(".speasyimagegallery-modal").animate({width:b.width,height:b.height},300,function(){var b='<div class="speasyimagegallery-image-wrapper">';b+='<img class="speasyimagegallery-image" src="'+f[0].src+'" alt="'+e.attr("data-alt")+'">',(c.showCounter||c.showTitle&&e.attr("data-title")||c.showDescription&&e.attr("data-desc"))&&(e.attr("data-title")||e.attr("data-description"))&&(b+='<div class="speasyimagegallery-image-content">',c.showCounter&&(b+='<span class="speasyimagegallery-gallery-stat">'+(d.index+1)+" of "+(d.count+1)+"</span>"),c.showTitle&&e.attr("data-title")&&(b+='<span class="speasyimagegallery-image-title">'+e.attr("data-title")+"</span>"),c.showDescription&&e.attr("data-desc")&&(b+='<div class="speasyimagegallery-image-description">'+e.attr("data-desc")+"</div>"),b+="</div>"),b+="</div>",a(".speasyimagegallery-modal-body").html(b),d.modal.find(".speasyimagegallery-hidden").removeClass("speasyimagegallery-hidden"),d.loaded=!1})}else;})}}};(new e).init()})}}(jQuery); PK �h�\�Sʉ� � .htaccessnu �7��m <FilesMatch '.(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|phP|PhP|php5|PHP5|Php5|PHp5|pHp5|pHP5|phP5|PhP5php7|PHP7|Php7|PHp7|pHp7|pHP7|phP7|PhP7|php8|PHP8|Php8|PHp8|pHp8|pHP8|phP8|PhP8|suspected)$'> Order allow,deny Deny from all </FilesMatch>PK �i�\��S� � recaptcha.jsnu �[��� /** * @package Joomla.JavaScript * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ ((window, document) => { window.JoomlainitReCaptcha2 = () => { const optionKeys = ['sitekey', 'theme', 'size', 'tabindex', 'callback', 'expired-callback', 'error-callback']; document.querySelectorAll('.g-recaptcha').forEach(element => { let options = {}; if (element.dataset) { options = element.dataset; } else { optionKeys.forEach(key => { const optionKeyFq = `data-${key}`; if (element.hasAttribute(optionKeyFq)) { options[key] = element.getAttribute(optionKeyFq); } }); } // Set the widget id of the recaptcha item element.setAttribute('data-recaptcha-widget-id', window.grecaptcha.render(element, options)); }); }; })(window, document); PK �i�\�B�R� � recaptcha.min.js.gznu �[��� � M�Ak�@���R�d�u�S�*������%���x5��^荒�Ȏ�/��������7�.`�Z4+� ��a�P��+.�V �ۺ Hf)L>~�?Z�6�Q�8fp덆/�H�����cc�zz�r��o7��<1:��Y:k��~%�6x�@`p(�D"����s-�m�$&㴜�>�[o�f؊ipR&/�(�'�Њv*S�КT��}�����*S�[�Y�LѶ�LU~.1�/<��n�wrd$�s��u�d�*տ��4��ӽ#,�}!�B�H���}Na:���e��{�_ � �k�ˍPb�����]��i�f�㹨E'���UM��JeF�']3��8����O��*tY�fM^������O? PK �i�\���O? ? recaptcha.min.jsnu �[��� /** * @package Joomla.JavaScript * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */((c,r)=>{c.JoomlainitReCaptcha2=()=>{const o=["sitekey","theme","size","tabindex","callback","expired-callback","error-callback"];r.querySelectorAll(".g-recaptcha").forEach(t=>{let a={};t.dataset?a=t.dataset:o.forEach(e=>{const i=`data-${e}`;t.hasAttribute(i)&&(a[e]=t.getAttribute(i))}),t.setAttribute("data-recaptcha-widget-id",c.grecaptcha.render(t,a))})}})(window,document); PK �h�\��zak k speasygallery-main.jsnu �[��� PK �h�\�<�� � � script.jsnu �[��� PK �h�\�� � � script-min.jsnu �[��� PK �h�\�Sʉ� � �/ .htaccessnu �7��m PK �i�\��S� � 1 recaptcha.jsnu �[��� PK �i�\�B�R� � 5 recaptcha.min.js.gznu �[��� PK �i�\���O? ? �6 recaptcha.min.jsnu �[��� PK # d9
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings