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 /
wiki.bernardino.org /
resources /
mediawiki /
Delete
Unzip
Name
Size
Permission
Date
Action
mediawiki.Title.js
8.43
KB
-rw-r--r--
2011-10-05 23:24
mediawiki.Uri.js
8.32
KB
-rw-r--r--
2011-10-05 23:24
mediawiki.htmlform.js
1.6
KB
-rw-r--r--
2011-05-29 04:54
mediawiki.js
35.63
KB
-rw-r--r--
2011-11-30 22:27
mediawiki.log.js
2.12
KB
-rw-r--r--
2011-05-29 14:25
mediawiki.user.js
5.14
KB
-rw-r--r--
2011-05-25 19:18
mediawiki.util.js
18.78
KB
-rw-r--r--
2012-01-03 20:21
Save
Rename
/** * Utility functions for jazzing up HTMLForm elements */ ( function( $ ) { /** * jQuery plugin to fade or snap to visible state. * * @param boolean instantToggle (optional) * @return jQuery */ $.fn.goIn = function( instantToggle ) { if ( instantToggle !== undefined && instantToggle === true ) { return $(this).show(); } return $(this).stop( true, true ).fadeIn(); }; /** * jQuery plugin to fade or snap to hiding state. * * @param boolean instantToggle (optional) * @return jQuery */ $.fn.goOut = function( instantToggle ) { if ( instantToggle !== undefined && instantToggle === true ) { return $(this).hide(); } return $(this).stop( true, true ).fadeOut(); }; /** * Bind a function to the jQuery object via live(), and also immediately trigger * the function on the objects with an 'instant' paramter set to true * @param callback function taking one paramter, which is Bool true when the event * is called immediately, and the EventArgs object when triggered from an event */ $.fn.liveAndTestAtStart = function( callback ){ $(this) .live( 'change', callback ) .each( function( index, element ){ callback.call( this, true ); } ); }; // Document ready: $( function() { // Animate the SelectOrOther fields, to only show the text field when // 'other' is selected. $( '.mw-htmlform-select-or-other' ).liveAndTestAtStart( function( instant ) { var $other = $( '#' + $(this).attr( 'id' ) + '-other' ); $other = $other.add( $other.siblings( 'br' ) ); if ( $(this).val() === 'other' ) { $other.goIn( instant ); } else { $other.goOut( instant ); } }); }); })( jQuery );