-
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.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.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
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.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-custom-header.min.js
4.357KB
Edit File
Delete File
Rename
wp-embed.js
3.067KB
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
wpdialog.js
0.425KB
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
/** * @summary Handles the addition of the comment form. * * @since 2.7.0 * * @type {Object} */ var addComment = { /** * @summary Retrieves the elements corresponding to the given IDs. * * @since 2.7.0 * * @param {string} commId The comment ID. * @param {string} parentId The parent ID. * @param {string} respondId The respond ID. * @param {string} postId The post ID. * @returns {boolean} Always returns false. */ moveForm: function( commId, parentId, respondId, postId ) { var div, element, style, cssHidden, t = this, comm = t.I( commId ), respond = t.I( respondId ), cancel = t.I( 'cancel-comment-reply-link' ), parent = t.I( 'comment_parent' ), post = t.I( 'comment_post_ID' ), commentForm = respond.getElementsByTagName( 'form' )[0]; if ( ! comm || ! respond || ! cancel || ! parent || ! commentForm ) { return; } t.respondId = respondId; postId = postId || false; if ( ! t.I( 'wp-temp-form-div' ) ) { div = document.createElement( 'div' ); div.id = 'wp-temp-form-div'; div.style.display = 'none'; respond.parentNode.insertBefore( div, respond ); } comm.parentNode.insertBefore( respond, comm.nextSibling ); if ( post && postId ) { post.value = postId; } parent.value = parentId; cancel.style.display = ''; /** * @summary Puts back the comment, hides the cancel button and removes the onclick event. * * @returns {boolean} Always returns false. */ cancel.onclick = function() { var t = addComment, temp = t.I( 'wp-temp-form-div' ), respond = t.I( t.respondId ); if ( ! temp || ! respond ) { return; } t.I( 'comment_parent' ).value = '0'; temp.parentNode.insertBefore( respond, temp ); temp.parentNode.removeChild( temp ); this.style.display = 'none'; this.onclick = null; return false; }; /* * Sets initial focus to the first form focusable element. * Uses try/catch just to avoid errors in IE 7- which return visibility * 'inherit' when the visibility value is inherited from an ancestor. */ try { for ( var i = 0; i < commentForm.elements.length; i++ ) { element = commentForm.elements[i]; cssHidden = false; // Modern browsers. if ( 'getComputedStyle' in window ) { style = window.getComputedStyle( element ); // IE 8. } else if ( document.documentElement.currentStyle ) { style = element.currentStyle; } /* * For display none, do the same thing jQuery does. For visibility, * check the element computed style since browsers are already doing * the job for us. In fact, the visibility computed style is the actual * computed value and already takes into account the element ancestors. */ if ( ( element.offsetWidth <= 0 && element.offsetHeight <= 0 ) || style.visibility === 'hidden' ) { cssHidden = true; } // Skip form elements that are hidden or disabled. if ( 'hidden' === element.type || element.disabled || cssHidden ) { continue; } element.focus(); // Stop after the first focusable element. break; } } catch( er ) {} return false; }, /** * @summary Returns the object corresponding to the given ID. * * @since 2.7.0 * * @param {string} id The ID. * @returns {Element} The element belonging to the ID. */ I: function( id ) { return document.getElementById( id ); } };
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat