⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.127
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
thread-self
/
root
/
usr
/
share
/
psa-horde
/
js
/
View File Name :
activesyncprefs.js
/** * Provides the javascript for managing ActiveSync partner devices. * * @copyright 2014-2015 Horde LLC * @license LGPL-2 (http://www.horde.org/licenses/lgpl) */ var HordeActiveSyncPrefs = { // Set in lib/Prefs/Ui.php: devices clickHandler: function(e) { var id = e.element().readAttribute('id'); if (id.startsWith('wipe_')) { $('wipeid').setValue(this.devices[id.substr(5)].id); $('actionID').setValue('update_special'); $('prefs').submit(); e.stop(); } else if (id.startsWith('cancel_')) { $('cancelwipe').setValue(this.devices[id.substr(7)].id); $('actionID').setValue('update_special'); $('prefs').submit(); e.stop(); } else if (id.startsWith('remove_')) { $('removedevice').setValue(this.devices[id.substr(7)].id); $('actionID').setValue('update_special'); $('prefs').submit(); e.stop(); } }, onDomLoad: function() { $('prefs').observe('click', this.clickHandler.bindAsEventListener(this)); } }; document.observe('dom:loaded', HordeActiveSyncPrefs.onDomLoad.bind(HordeActiveSyncPrefs));