-
WIBUHAX0R1337
-
/
home
/
cideo
/
sainchargny
/
wp-admin
/
js
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
widgets
--
NONE
accordion.js
2.85KB
Edit File
Delete File
Rename
code-editor.js
11.179KB
Edit File
Delete File
Rename
comment.js
2.723KB
Edit File
Delete File
Rename
comment.min.js
1.218KB
Edit File
Delete File
Rename
common.min.js
15.06KB
Edit File
Delete File
Rename
custom-background.js
3.285KB
Edit File
Delete File
Rename
customize-controls.min.js
109.172KB
Edit File
Delete File
Rename
customize-nav-menus.js
104.909KB
Edit File
Delete File
Rename
customize-nav-menus.min.js
45.419KB
Edit File
Delete File
Rename
customize-widgets.js
68.702KB
Edit File
Delete File
Rename
customize-widgets.min.js
27.724KB
Edit File
Delete File
Rename
dashboard.js
16.196KB
Edit File
Delete File
Rename
dashboard.min.js
6.901KB
Edit File
Delete File
Rename
edit-comments.js
27.301KB
Edit File
Delete File
Rename
edit-comments.min.js
14.586KB
Edit File
Delete File
Rename
editor.js
44.335KB
Edit File
Delete File
Rename
editor.min.js
13.103KB
Edit File
Delete File
Rename
farbtastic.js
7.509KB
Edit File
Delete File
Rename
image-edit.js
27.807KB
Edit File
Delete File
Rename
image-edit.min.js
9.525KB
Edit File
Delete File
Rename
inline-edit-post.js
16.033KB
Edit File
Delete File
Rename
inline-edit-tax.js
7.415KB
Edit File
Delete File
Rename
iris.min.js
23.055KB
Edit File
Delete File
Rename
language-chooser.js
0.61KB
Edit File
Delete File
Rename
language-chooser.min.js
0.365KB
Edit File
Delete File
Rename
media-gallery.js
1.151KB
Edit File
Delete File
Rename
media-gallery.min.js
0.524KB
Edit File
Delete File
Rename
media-upload.min.js
1.126KB
Edit File
Delete File
Rename
media.js
5.116KB
Edit File
Delete File
Rename
nav-menu.js
41.266KB
Edit File
Delete File
Rename
nav-menu.min.js
20.628KB
Edit File
Delete File
Rename
plugin-install.js
6.8KB
Edit File
Delete File
Rename
plugin-install.min.js
2.346KB
Edit File
Delete File
Rename
post.js
36.533KB
Edit File
Delete File
Rename
postbox.js
11.629KB
Edit File
Delete File
Rename
tags-box.js
6.726KB
Edit File
Delete File
Rename
tags-box.min.js
3.089KB
Edit File
Delete File
Rename
tags-suggest.js
5.072KB
Edit File
Delete File
Rename
tags-suggest.min.js
2.122KB
Edit File
Delete File
Rename
tags.js
4.377KB
Edit File
Delete File
Rename
tags.min.js
1.671KB
Edit File
Delete File
Rename
theme-plugin-editor.js
23.664KB
Edit File
Delete File
Rename
theme-plugin-editor.min.js
10.848KB
Edit File
Delete File
Rename
theme.js
53.09KB
Edit File
Delete File
Rename
theme.min.js
26.053KB
Edit File
Delete File
Rename
updates.js
79.173KB
Edit File
Delete File
Rename
user-profile.js
12.22KB
Edit File
Delete File
Rename
user-profile.min.js
6.21KB
Edit File
Delete File
Rename
user-suggest.js
1.045KB
Edit File
Delete File
Rename
widgets.js
21.502KB
Edit File
Delete File
Rename
widgets.min.js
11.856KB
Edit File
Delete File
Rename
word-count.min.js
1.473KB
Edit File
Delete File
Rename
wp-fullscreen-stub.js
0.668KB
Edit File
Delete File
Rename
/** * Accordion-folding functionality. * * Markup with the appropriate classes will be automatically hidden, * with one section opening at a time when its title is clicked. * Use the following markup structure for accordion behavior: * * <div class="accordion-container"> * <div class="accordion-section open"> * <h3 class="accordion-section-title"></h3> * <div class="accordion-section-content"> * </div> * </div> * <div class="accordion-section"> * <h3 class="accordion-section-title"></h3> * <div class="accordion-section-content"> * </div> * </div> * <div class="accordion-section"> * <h3 class="accordion-section-title"></h3> * <div class="accordion-section-content"> * </div> * </div> * </div> * * Note that any appropriate tags may be used, as long as the above classes are present. * * @since 3.6.0. */ ( function( $ ){ $( document ).ready( function () { // Expand/Collapse accordion sections on click. $( '.accordion-container' ).on( 'click keydown', '.accordion-section-title', function( e ) { if ( e.type === 'keydown' && 13 !== e.which ) { // "return" key return; } e.preventDefault(); // Keep this AFTER the key filter above accordionSwitch( $( this ) ); }); }); /** * Close the current accordion section and open a new one. * * @param {Object} el Title element of the accordion section to toggle. * @since 3.6.0 */ function accordionSwitch ( el ) { var section = el.closest( '.accordion-section' ), sectionToggleControl = section.find( '[aria-expanded]' ).first(), container = section.closest( '.accordion-container' ), siblings = container.find( '.open' ), siblingsToggleControl = siblings.find( '[aria-expanded]' ).first(), content = section.find( '.accordion-section-content' ); // This section has no content and cannot be expanded. if ( section.hasClass( 'cannot-expand' ) ) { return; } // Add a class to the container to let us know something is happening inside. // This helps in cases such as hiding a scrollbar while animations are executing. container.addClass( 'opening' ); if ( section.hasClass( 'open' ) ) { section.toggleClass( 'open' ); content.toggle( true ).slideToggle( 150 ); } else { siblingsToggleControl.attr( 'aria-expanded', 'false' ); siblings.removeClass( 'open' ); siblings.find( '.accordion-section-content' ).show().slideUp( 150 ); content.toggle( false ).slideToggle( 150 ); section.toggleClass( 'open' ); } // We have to wait for the animations to finish setTimeout(function(){ container.removeClass( 'opening' ); }, 150); // If there's an element with an aria-expanded attribute, assume it's a toggle control and toggle the aria-expanded value. if ( sectionToggleControl ) { sectionToggleControl.attr( 'aria-expanded', String( sectionToggleControl.attr( 'aria-expanded' ) === 'false' ) ); } } })(jQuery);
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat