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 /
gf.bdcloud.fr /
core /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
blockUI.js
2.98
KB
-rw-r--r--
2020-10-12 13:33
dst.js
6.06
KB
-rw-r--r--
2020-10-12 13:33
editinplace.js
12.56
KB
-rw-r--r--
2020-10-12 13:33
index.html
0
B
-rw-r--r--
2020-10-12 13:33
lib_foot.js.php
8.63
KB
-rw-r--r--
2020-10-12 13:33
lib_gravatar.js.php
6.32
KB
-rw-r--r--
2020-10-12 13:33
lib_head.js.php
37.39
KB
-rw-r--r--
2020-10-12 13:33
lib_notification.js.php
5.88
KB
-rw-r--r--
2020-10-12 13:33
lib_photosresize.js
1.53
KB
-rw-r--r--
2020-10-12 13:33
lib_rare.js
1.32
KB
-rw-r--r--
2020-10-12 13:33
listview.js
5.68
KB
-rw-r--r--
2020-10-12 13:33
timepicker.js.php
2.57
KB
-rw-r--r--
2020-10-12 13:33
timesheet.js
9.53
KB
-rw-r--r--
2020-10-12 13:33
Save
Rename
// Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com> // // 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/core/js/blockUI.js // \brief File that include javascript functions for blockUI default options // // Examples $(document).ready(function() { // override these in your code to change the default behavior and style /*$.blockUI.events = { // styles applied when using $.growlUI dolEventValidCSS: { width: '350px', top: '10px', left: '', right: '10px', border: 'none', padding: '5px', opacity: 0.8, cursor: 'default', color: '#fff', backgroundColor: '#e3f0db', '-webkit-border-radius': '10px', '-moz-border-radius': '10px', 'border-radius': '10px' }, // styles applied when using $.growlUI dolEventErrorCSS: { width: '350px', top: '10px', left: '', right: '10px', border: 'none', padding: '5px', opacity: 0.8, cursor: 'default', color: '#a72947', backgroundColor: '#d79eac', '-webkit-border-radius': '10px', '-moz-border-radius': '10px', 'border-radius': '10px' } };*/ $.dolEventValid = function(title, message, timeout, onClose) { var $m = $('<div class="dolEventValid"></div>'); if (title) $m.append('<h1>'+title+'</h1>'); if (message) $m.append('<h2>'+message+'</h2>'); if (timeout == undefined) timeout = 3000; $.blockUI({ message: $m, fadeIn: 0, fadeOut: 0, centerY: false, timeout: timeout, showOverlay: false, onUnblock: onClose, css: $.blockUI.events.dolEventValidCSS }); }; $.dolEventError = function(title, message, timeout, onClose) { var $m = $('<div class="dolEventError"></div>'); if (title) $m.append('<h1>'+title+'</h1>'); if (message) $m.append('<h2>'+message+'</h2>'); if (timeout == undefined) timeout = 0; $.blockUI({ message: $m, fadeIn: 0, centerY: false, timeout: timeout, showOverlay: false, onUnblock: onClose, css: $.blockUI.events.dolEventErrorCSS }); $('.dolEventError').click($.unblockUI); }; $.pleaseBePatient = function(message) { $.blockUI({ message: message, css: { border: 'none', padding: '15px', background: '#000 url(' + indicatorBlockUI + ') no-repeat 10px center', '-webkit-border-radius': '10px', '-moz-border-radius': '10px', 'border-radius': '10px', color: '#fff' } }); } });