Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
media /
com_jchoptimize /
core /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
admin-utility.js
2.13
KB
-rwxr-xr-x
2022-08-17 13:56
index.html
53
B
-rwxr-xr-x
2022-08-17 13:56
ioptimize-api.js
13.12
KB
-rwxr-xr-x
2021-11-14 12:48
ls.loader.effects.js
397
B
-rwxr-xr-x
2022-08-17 13:56
ls.loader.js
359
B
-rwxr-xr-x
2022-08-17 13:56
multiselect.js
3.12
KB
-rwxr-xr-x
2022-08-17 13:56
platform.prototype.js
1.25
KB
-rwxr-xr-x
2022-08-17 13:56
resize-sensor.js
717
B
-rwxr-xr-x
2022-08-17 13:56
smart-combine.js
2.48
KB
-rwxr-xr-x
2021-11-14 12:48
tabs-state.js
2.49
KB
-rwxr-xr-x
2022-08-17 13:56
Save
Rename
/** * JCH Optimize - Performs several front-end optimizations for fast downloads * * @package jchoptimize/core * @author Samuel Marshall <samuel@jch-optimize.net> * @copyright Copyright (c) 2021 Samuel Marshall / JCH Optimize * @license GNU/GPLv3, or later. See LICENSE file * * If LICENSE file missing, see <http://www.gnu.org/licenses/>. */ var jchSmartCombine = (function ($) { $(document).ready(function () { const smart_combine_button = $('button#btn-pro_smart_combine'); if ($('.jch-smart-combine-radios-wrapper input:radio:checked').val() === '1') { smart_combine_button.css('display', 'inline'); } $('.jch-smart-combine-radios-wrapper label[for$="1"]').click(function () { processSmartCombine(); }); $('.jch-smart-combine-radios-wrapper label[for$="0"]').click(function () { $('.jch-smart-combine-values').val(''); }); smart_combine_button.click(function () { reprocessSmartCombine(); }) }); function processSmartCombine(reprocess = false) { $('img#img-pro_smart_combine').css('display', 'inline'); $('button#btn-pro_smart_combine').css('display', 'none'); let xhr = $.ajax({ dataType: 'json', url: jchPlatform.jch_ajax_url_smartcombine + '&_=' + getTimeStamp(), method: 'POST', success: function (response) { const smart_combine_values = $('.jch-smart-combine-values'); smart_combine_values.val(''); var values = []; $.each(response.data.css, function (index, value) { values.push(value); }); $.each(response.data.js, function (index, value) { values.push(value); }) let value_text = encodeURIComponent(JSON.stringify(values)); smart_combine_values.val(value_text); $('img#img-pro_smart_combine').css('display', 'none'); $('button#btn-pro_smart_combine').css('display', 'inline'); }, complete: function () { if (reprocess) { jchPlatform.submitForm(); } } }) } function reprocessSmartCombine() { processSmartCombine(true); } return { processSmartCombine: processSmartCombine, reprocessSmartCombine: reprocessSmartCombine } })(jQuery);