Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
webedi.bdcloud.fr /
core /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
blockUI.js
2.98
KB
-rw-r--r--
2020-04-18 15:05
dst.js
6.06
KB
-rw-r--r--
2020-04-18 15:05
editinplace.js
12.56
KB
-rw-r--r--
2020-04-18 15:05
index.html
0
B
-rw-r--r--
2020-04-18 15:05
lib_foot.js.php
8.63
KB
-rw-r--r--
2020-07-06 22:27
lib_gravatar.js.php
6.32
KB
-rw-r--r--
2020-05-12 15:31
lib_head.js.php
37.39
KB
-rw-r--r--
2020-06-03 13:58
lib_notification.js.php
5.88
KB
-rw-r--r--
2020-05-12 15:31
lib_photosresize.js
1.53
KB
-rw-r--r--
2020-04-18 15:05
lib_rare.js
1.32
KB
-rw-r--r--
2020-04-18 15:05
listview.js
5.68
KB
-rw-r--r--
2020-04-18 15:05
timepicker.js.php
2.57
KB
-rw-r--r--
2020-05-12 15:31
timesheet.js
9.53
KB
-rw-r--r--
2020-05-12 15:31
Save
Rename
// Copyright (C) 2009-2014 Laurent Destailleur <eldy@users.sourceforge.net> // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // or see https://www.gnu.org/ // // \file htdocs/lib/lib_photoresize.js // \brief File that include javascript functions for croping feature // /* Enable jcrop plugin onto id cropbox */ jQuery(function() { jQuery('#cropbox').Jcrop({ onSelect: updateCoords, onChange: updateCoords }); }); /* Update fields that store new size */ function updateCoords(c) { //alert(parseInt(jQuery("#ratioforcrop").val())); ratio=1; if (parseInt(jQuery("#ratioforcrop").val()) > 0) ratio = parseInt(jQuery("#ratioforcrop").val()); //console.log(ratio); jQuery('#x').val(Math.ceil(c.x * ratio)); jQuery('#y').val(Math.ceil(c.y * ratio)); jQuery('#x2').val(Math.ceil(c.x2 * ratio)); jQuery('#y2').val(Math.ceil(c.y2 * ratio)); jQuery('#w').val(Math.ceil(c.w * ratio)); jQuery('#h').val(Math.ceil(c.h * ratio)); };