One Hat Cyber Team
Your IP :
172.16.0.254
Server IP :
58.26.163.33
Server :
Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Server Software :
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
PHP Version :
7.3.25
Buat File
|
Buat Folder
Eksekusi
Dir :
C:
/
xampp7
/
htdocs
/
edgpens
/
js
/
pages
/
Edit File:
appEmail.js
/* * Document : appEmail.js * Author : pixelcave * Description: Custom javascript code used in Email Center page */ var AppEmail = function() { return { init: function() { // Choose one of the highlight classes for the message list rows: 'active', 'success', 'warning', 'danger' var rowHighlightClass = 'warning'; /* Add/Remove row highlighting on checkbox click */ $('tbody input:checkbox').click(function() { var checkedStatus = $(this).prop('checked'); var tableRow = $(this).closest('tr'); if (checkedStatus) { tableRow.addClass(rowHighlightClass); } else { tableRow.removeClass(rowHighlightClass); } }); /* Show/Hide Message view - Just for preview */ var inboxList = $('#message-list'); var inboxView = $('#message-view'); inboxList.find('h4 > a').on('click', function(){ inboxList .removeClass('animation-fadeInQuick2Inv') .addClass('display-none'); inboxView .removeClass('display-none') .addClass('animation-fadeInQuick2'); }); inboxView.find('#message-view-back').on('click', function(){ inboxView .removeClass('animation-fadeInQuick2') .addClass('display-none'); inboxList .removeClass('display-none') .addClass('animation-fadeInQuick2Inv'); }); } }; }();
Simpan