Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
backup /
extensions /
Vector /
modules /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
ext.vector.collapsibleNav.css
1.38
KB
-rw-r--r--
2010-12-16 20:32
ext.vector.collapsibleNav.js
8.7
KB
-rw-r--r--
2011-02-14 20:13
ext.vector.collapsibleTabs.js
4.72
KB
-rw-r--r--
2011-11-14 22:03
ext.vector.editWarning.js
2.35
KB
-rw-r--r--
2010-10-27 02:16
ext.vector.expandableSearch.css
122
B
-rw-r--r--
2010-09-21 01:45
ext.vector.expandableSearch.js
1.7
KB
-rw-r--r--
2010-09-20 21:55
ext.vector.footerCleanup.css
1.82
KB
-rw-r--r--
2010-09-20 21:55
ext.vector.footerCleanup.js
1.96
KB
-rw-r--r--
2010-09-20 21:55
ext.vector.sectionEditLinks.css
323
B
-rw-r--r--
2011-03-16 14:07
ext.vector.sectionEditLinks.js
2.62
KB
-rw-r--r--
2011-03-17 23:40
ext.vector.simpleSearch.js
3.16
KB
-rw-r--r--
2011-07-14 22:30
Save
Rename
/* * Edit warning for Vector */ (function( $ ) { $(document).ready( function() { // Check if EditWarning is enabled and if we need it if ( $( '#wpTextbox1' ).size() == 0 ) { return true; } // Get the original values of some form elements $( '#wpTextbox1, #wpSummary' ).each( function() { $(this).data( 'origtext', $(this).val() ); }); // Attach our own handler for onbeforeunload which respects the current one var fallbackWindowOnBeforeUnload = window.onbeforeunload; var ourWindowOnBeforeUnload = function() { var fallbackResult = undefined; var retval = undefined; var thisFunc = arguments.callee; // Check if someone already set on onbeforeunload hook if ( fallbackWindowOnBeforeUnload ) { // Get the result of their onbeforeunload hook fallbackResult = fallbackWindowOnBeforeUnload(); } // Check if their onbeforeunload hook returned something if ( fallbackResult !== undefined ) { // Exit here, returning their message retval = fallbackResult; } else { // Check if the current values of some form elements are the same as // the original values if ( wgAction == 'submit' || $( '#wpTextbox1' ).data( 'origtext' ) != $( '#wpTextbox1' ).val() || $( '#wpSummary' ).data( 'origtext' ) != $( '#wpSummary' ).val() ) { // Return our message retval = mediaWiki.msg( 'vector-editwarning-warning' ); } } // Unset the onbeforeunload handler so we don't break page caching in Firefox window.onbeforeunload = null; if ( retval !== undefined ) { // ...but if the user chooses not to leave the page, we need to rebind it setTimeout( function() { window.onbeforeunload = thisFunc; } ); return retval; } }; var pageShowHandler = function() { // Re-add onbeforeunload handler window.onbeforeunload = ourWindowOnBeforeUnload; }; pageShowHandler(); if ( window.addEventListener ) { window.addEventListener('pageshow', pageShowHandler, false); } else if ( window.attachEvent ) { window.attachEvent( 'pageshow', pageShowHandler ); } // Add form submission handler $( 'form' ).submit( function() { // Restore whatever previous onbeforeload hook existed window.onbeforeunload = fallbackWindowOnBeforeUnload; }); }); //Global storage of fallback for onbeforeunload hook var fallbackWindowOnBeforeUnload = null; })( jQuery );