Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.61
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
alinaousgg /
garmin /
themes /
sp_ego_e /
_dev /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
components
[ DIR ]
drwx---r-x
lib
[ DIR ]
drwx---r-x
cart.js
6.29
KB
-rw----r--
checkout.js
2.23
KB
-rw----r--
customer.js
1.43
KB
-rw----r--
listing.js
5.99
KB
-rw----r--
product.js
4
KB
-rw----r--
responsive.js
2.45
KB
-rw----r--
theme.js
2.18
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : product.js
/** * 2007-2017 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License 3.0 (AFL-3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/AFL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <contact@prestashop.com> * @copyright 2007-2017 PrestaShop SA * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) * International Registered Trademark & Property of PrestaShop SA */ import $ from 'jquery'; $(document).ready(function () { createProductSpin(); createInputFile(); coverImage(); imageScrollBox(); prestashop.on('updatedProduct', function (event) { createInputFile(); coverImage(); if (event && event.product_minimal_quantity) { const minimalProductQuantity = parseInt(event.product_minimal_quantity, 10); const quantityInputSelector = '#quantity_wanted'; let quantityInput = $(quantityInputSelector); // @see http://www.virtuosoft.eu/code/bootstrap-touchspin/ about Bootstrap TouchSpin quantityInput.trigger('touchspin.updatesettings', {min: minimalProductQuantity}); } imageScrollBox(); $($('.tabs .nav-link.active').attr('href')).addClass('active').removeClass('fade'); $('.js-product-images-modal').replaceWith(event.product_images_modal); }); function coverImage() { $('.js-thumb').on( 'click', (event) => { $('.js-modal-product-cover').attr('src',$(event.target).data('image-large-src')); $('.selected').removeClass('selected'); $(event.target).addClass('selected'); $('.js-qv-product-cover').prop('src', $(event.currentTarget).data('image-large-src')); } ); } function imageScrollBox() { if ($('#main .js-qv-product-images li').length > 2) { $('#main .js-qv-mask').addClass('scroll'); $('.scroll-box-arrows').addClass('scroll'); $('#main .js-qv-mask').scrollbox({ direction: 'h', distance: 113, autoPlay: false }); $('.scroll-box-arrows .left').click(function () { $('#main .js-qv-mask').trigger('backward'); }); $('.scroll-box-arrows .right').click(function () { $('#main .js-qv-mask').trigger('forward'); }); } else { $('#main .js-qv-mask').removeClass('scroll'); $('.scroll-box-arrows').removeClass('scroll'); } } function createInputFile() { $('.js-file-input').on('change', (event) => { let target, file; if ((target = $(event.currentTarget)[0]) && (file = target.files[0])) { $(target).prev().text(file.name); } }); } function createProductSpin() { let quantityInput = $('#quantity_wanted'); quantityInput.TouchSpin({ verticalbuttons: true, verticalupclass: 'material-icons touchspin-up', verticaldownclass: 'material-icons touchspin-down', buttondown_class: 'btn btn-touchspin js-touchspin', buttonup_class: 'btn btn-touchspin js-touchspin', min: parseInt(quantityInput.attr('min'), 10), max: 1000000 }); var quantity = quantityInput.val(); quantityInput.on('keyup change', function (event) { const newQuantity = $(this).val(); if (newQuantity !== quantity) { quantity = newQuantity; let $productRefresh = $('.product-refresh'); $(event.currentTarget).trigger('touchspin.stopspin'); $productRefresh.trigger('click', {eventType: 'updatedProductQuantity'}); } event.preventDefault(); return false; }); } });
Close