Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
js /
addons /
[ HOME SHELL ]
Name
Size
Permission
Action
datatables.js
442.11
KB
-rwxrwxr-x
datatables.min.js
82.94
KB
-rwxrwxr-x
datatables-select.js
31.25
KB
-rwxrwxr-x
datatables-select.min.js
11.47
KB
-rwxrwxr-x
imagesloaded.pkgd.min.js
5.46
KB
-rwxrwxr-x
jquery.zmd.hierarchical-display.js
6.1
KB
-rwxrwxr-x
jquery.zmd.hierarchical-display.min.js
3.16
KB
-rwxrwxr-x
masonry.pkgd.min.js
23.54
KB
-rwxrwxr-x
rating.js
1.6
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rating.js
var $stars; jQuery(document).ready(function ($) { // Custom whitelist to allow for using HTML tags in popover content var myDefaultWhiteList = $.fn.tooltip.Constructor.Default.whiteList myDefaultWhiteList.textarea = []; myDefaultWhiteList.button = []; $stars = $('.rate-popover'); $stars.on('mouseover', function () { var index = $(this).attr('data-index'); markStarsAsActive(index); }); function markStarsAsActive(index) { unmarkActive(); for (var i = 0; i <= index; i++) { $($stars.get(i)).addClass('amber-text'); } } function unmarkActive() { $stars.removeClass('amber-text'); } $stars.on('click', function () { $stars.popover('hide'); }); // Submit, you can add some extra custom code here // ex. to send the information to the server $('#rateMe').on('click', '#voteSubmitButton', function () { $stars.popover('hide'); }); // Cancel, just close the popover $('#rateMe').on('click', '#closePopoverButton', function () { $stars.popover('hide'); }); }); $(function () { $('.rate-popover').popover({ // Append popover to #rateMe to allow handling form inside the popover container: '#rateMe', // Custom content for popover content: `<div class="my-0 py-0"> <textarea type="text" style="font-size: 0.78rem" class="md-textarea form-control py-0" placeholder="Write us what can we improve" rows="3"></textarea> <button id="voteSubmitButton" type="submit" class="btn btn-sm btn-primary">Submit!</button> <button id="closePopoverButton" class="btn btn-flat btn-sm">Close</button> </div>` }); $('.rate-popover').tooltip(); });
Close