/home/desid573/public_html/magicride.ng/wp-admin/js
NameSizeModeActions
widgets/-0755rm
accordion.js29530644editdlrm
accordion.min.js8300644editdlrm
code-editor.js115870644editdlrm
code-editor.min.js30690644editdlrm
color-picker.js98230644editdlrm
color-picker.min.js34860644editdlrm
comment.js27950644editdlrm
comment.min.js12300644editdlrm
common.js427640644editdlrm
common.min.js152190644editdlrm
custom-background.js34260644editdlrm
custom-background.min.js11620644editdlrm
custom-header.js20190644editdlrm
customize-controls.js2908020644editdlrm
customize-controls.min.js1107480644editdlrm
customize-nav-menus.js1090100644editdlrm
customize-nav-menus.min.js459750644editdlrm
customize-widgets.js714890644editdlrm
customize-widgets.min.js279660644editdlrm
dashboard.js188580644editdlrm
dashboard.min.js66150644editdlrm
edit-comments.js292700644editdlrm
edit-comments.min.js150440644editdlrm
editor-expand.js426310644editdlrm
editor-expand.min.js134160644editdlrm
editor.js453130644editdlrm
editor.min.js131920644editdlrm
farbtastic.js76890644editdlrm
gallery.js56380644editdlrm
gallery.min.js38010644editdlrm
image-edit.js292940644editdlrm
image-edit.min.js100700644editdlrm
inline-edit-post.js163070644editdlrm
inline-edit-post.min.js72840644editdlrm
inline-edit-tax.js77010644editdlrm
inline-edit-tax.min.js28710644editdlrm
iris.min.js236080644editdlrm
language-chooser.js8730644editdlrm
language-chooser.min.js3740644editdlrm
link.js38750644editdlrm
link.min.js16350644editdlrm
media-gallery.js13060644editdlrm
media-gallery.min.js5780644editdlrm
media-upload.js34630644editdlrm
media-upload.min.js11120644editdlrm
media.js52270644editdlrm
media.min.js18670644editdlrm
nav-menu.js424820644editdlrm
nav-menu.min.js209490644editdlrm
password-strength-meter.js31730644editdlrm
password-strength-meter.min.js7310644editdlrm
plugin-install.js70170644editdlrm
plugin-install.min.js23530644editdlrm
post.js374070644editdlrm
post.min.js180270644editdlrm
postbox.js117650644editdlrm
postbox.min.js41440644editdlrm
revisions.js337900644editdlrm
revisions.min.js178400644editdlrm
set-post-thumbnail.js8410644editdlrm
set-post-thumbnail.min.js5330644editdlrm
site-health.js86260644editdlrm
site-health.min.js46630644editdlrm
svg-painter.js55220644editdlrm
svg-painter.min.js23370644editdlrm
tags-box.js110400644editdlrm
tags-box.min.js30250644editdlrm
tags-suggest.js54400644editdlrm
tags-suggest.min.js21940644editdlrm
tags.js43460644editdlrm
tags.min.js16550644editdlrm
theme-plugin-editor.js246760644editdlrm
theme-plugin-editor.min.js112010644editdlrm
theme.js543920644editdlrm
theme.min.js264620644editdlrm
updates.js805730644editdlrm
updates.min.js356290644editdlrm
user-profile.js122520644editdlrm
user-profile.min.js62380644editdlrm
user-suggest.js23170644editdlrm
user-suggest.min.js6570644editdlrm
widgets.js228760644editdlrm
widgets.min.js123950644editdlrm
word-count.js76900644editdlrm
word-count.min.js15000644editdlrm
wp-fullscreen-stub.js6780644editdlrm
wp-fullscreen-stub.min.js3260644editdlrm
xfn.js77100644editdlrm
xfn.min.js33520644editdlrm
Edit: /home/desid573/public_html/magicride.ng/wp-admin/js/media-upload.js (3463B)
/** * 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. * @returns {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 * * @returns {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).resize(function(){ tb_position(); }); })(jQuery);