X7ROOT File Manager
Current Path:
/home/notabjze/starbudzca.com/wp-admin/js
home
/
notabjze
/
starbudzca.com
/
wp-admin
/
js
/
ðŸ“
..
📄
accordion.js
(2.87 KB)
📄
accordion.min.js
(849 B)
📄
application-passwords.js
(6.24 KB)
📄
application-passwords.min.js
(2.95 KB)
📄
auth-app.js
(5.66 KB)
📄
auth-app.min.js
(2.04 KB)
📄
code-editor.js
(11.32 KB)
📄
code-editor.min.js
(3.01 KB)
📄
color-picker.js
(9.54 KB)
📄
color-picker.min.js
(3.4 KB)
📄
comment.js
(2.84 KB)
📄
comment.min.js
(1.28 KB)
📄
common.js
(58.04 KB)
📄
common.min.js
(21.57 KB)
📄
custom-background.js
(3.35 KB)
📄
custom-background.min.js
(1.18 KB)
📄
custom-header.js
(1.98 KB)
📄
customize-controls.js
(286.46 KB)
📄
customize-controls.min.js
(108.97 KB)
📄
customize-nav-menus.js
(105.91 KB)
📄
customize-nav-menus.min.js
(44.52 KB)
📄
customize-widgets.js
(70.02 KB)
📄
customize-widgets.min.js
(27.4 KB)
📄
dashboard.js
(26.92 KB)
📄
dashboard.min.js
(8.59 KB)
📄
edit-comments.js
(36.65 KB)
📄
edit-comments.min.js
(14.99 KB)
📄
editor-expand.js
(41.61 KB)
📄
editor-expand.min.js
(13.14 KB)
📄
editor.js
(44.25 KB)
📄
editor.min.js
(12.87 KB)
📄
farbtastic.js
(7.67 KB)
📄
gallery.js
(5.41 KB)
📄
gallery.min.js
(3.65 KB)
📄
image-edit.js
(38.21 KB)
📄
image-edit.min.js
(14.3 KB)
📄
inline-edit-post.js
(17.75 KB)
📄
inline-edit-post.min.js
(8.22 KB)
📄
inline-edit-tax.js
(7.61 KB)
📄
inline-edit-tax.min.js
(2.93 KB)
📄
iris.min.js
(23.09 KB)
📄
language-chooser.js
(890 B)
📄
language-chooser.min.js
(423 B)
📄
link.js
(3.89 KB)
📄
link.min.js
(1.7 KB)
📄
media-gallery.js
(1.27 KB)
📄
media-gallery.min.js
(611 B)
📄
media-upload.js
(3.38 KB)
📄
media-upload.min.js
(1.13 KB)
📄
media.js
(6.39 KB)
📄
media.min.js
(2.36 KB)
📄
nav-menu.js
(50.09 KB)
📄
nav-menu.min.js
(25.35 KB)
📄
password-strength-meter.js
(4.14 KB)
📄
password-strength-meter.min.js
(1.1 KB)
📄
password-toggle.js
(1.31 KB)
📄
password-toggle.min.js
(847 B)
📄
plugin-install.js
(6.92 KB)
📄
plugin-install.min.js
(2.35 KB)
📄
post.js
(39.18 KB)
📄
post.min.js
(18.61 KB)
📄
postbox.js
(18.4 KB)
📄
postbox.min.js
(6.55 KB)
📄
privacy-tools.js
(10.65 KB)
📄
privacy-tools.min.js
(5.02 KB)
📄
revisions.js
(33.13 KB)
📄
revisions.min.js
(17.45 KB)
📄
set-post-thumbnail.js
(876 B)
📄
set-post-thumbnail.min.js
(620 B)
📄
site-health.js
(13.28 KB)
📄
site-health.min.js
(6.15 KB)
📄
svg-painter.js
(5.39 KB)
📄
svg-painter.min.js
(2.33 KB)
📄
tags-box.js
(10.88 KB)
📄
tags-box.min.js
(3 KB)
📄
tags-suggest.js
(5.53 KB)
📄
tags-suggest.min.js
(2.19 KB)
📄
tags.js
(4.77 KB)
📄
tags.min.js
(1.96 KB)
📄
theme-plugin-editor.js
(24.79 KB)
📄
theme-plugin-editor.min.js
(11.46 KB)
📄
theme.js
(54.67 KB)
📄
theme.min.js
(26.42 KB)
📄
updates.js
(93.28 KB)
📄
updates.min.js
(40.64 KB)
📄
user-profile.js
(13.78 KB)
📄
user-profile.min.js
(6.13 KB)
📄
user-suggest.js
(2.25 KB)
📄
user-suggest.min.js
(676 B)
ðŸ“
widgets
📄
widgets.js
(22.56 KB)
📄
widgets.min.js
(12.31 KB)
📄
word-count.js
(7.52 KB)
📄
word-count.min.js
(1.49 KB)
📄
xfn.js
(740 B)
📄
xfn.min.js
(458 B)
Editing: password-strength-meter.js
/** * @output wp-admin/js/password-strength-meter.js */ /* global zxcvbn */ window.wp = window.wp || {}; (function($){ var __ = wp.i18n.__, sprintf = wp.i18n.sprintf; /** * Contains functions to determine the password strength. * * @since 3.7.0 * * @namespace */ wp.passwordStrength = { /** * Determines the strength of a given password. * * Compares first password to the password confirmation. * * @since 3.7.0 * * @param {string} password1 The subject password. * @param {Array} disallowedList An array of words that will lower the entropy of * the password. * @param {string} password2 The password confirmation. * * @return {number} The password strength score. */ meter : function( password1, disallowedList, password2 ) { if ( ! Array.isArray( disallowedList ) ) disallowedList = [ disallowedList.toString() ]; if (password1 != password2 && password2 && password2.length > 0) return 5; if ( 'undefined' === typeof window.zxcvbn ) { // Password strength unknown. return -1; } var result = zxcvbn( password1, disallowedList ); return result.score; }, /** * Builds an array of words that should be penalized. * * Certain words need to be penalized because it would lower the entropy of a * password if they were used. The disallowedList is based on user input fields such * as username, first name, email etc. * * @since 3.7.0 * @deprecated 5.5.0 Use {@see 'userInputDisallowedList()'} instead. * * @return {string[]} The array of words to be disallowed. */ userInputBlacklist : function() { window.console.log( sprintf( /* translators: 1: Deprecated function name, 2: Version number, 3: Alternative function name. */ __( '%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code.' ), 'wp.passwordStrength.userInputBlacklist()', '5.5.0', 'wp.passwordStrength.userInputDisallowedList()' ) ); return wp.passwordStrength.userInputDisallowedList(); }, /** * Builds an array of words that should be penalized. * * Certain words need to be penalized because it would lower the entropy of a * password if they were used. The disallowed list is based on user input fields such * as username, first name, email etc. * * @since 5.5.0 * * @return {string[]} The array of words to be disallowed. */ userInputDisallowedList : function() { var i, userInputFieldsLength, rawValuesLength, currentField, rawValues = [], disallowedList = [], userInputFields = [ 'user_login', 'first_name', 'last_name', 'nickname', 'display_name', 'email', 'url', 'description', 'weblog_title', 'admin_email' ]; // Collect all the strings we want to disallow. rawValues.push( document.title ); rawValues.push( document.URL ); userInputFieldsLength = userInputFields.length; for ( i = 0; i < userInputFieldsLength; i++ ) { currentField = $( '#' + userInputFields[ i ] ); if ( 0 === currentField.length ) { continue; } rawValues.push( currentField[0].defaultValue ); rawValues.push( currentField.val() ); } /* * Strip out non-alphanumeric characters and convert each word to an * individual entry. */ rawValuesLength = rawValues.length; for ( i = 0; i < rawValuesLength; i++ ) { if ( rawValues[ i ] ) { disallowedList = disallowedList.concat( rawValues[ i ].replace( /\W/g, ' ' ).split( ' ' ) ); } } /* * Remove empty values, short words and duplicates. Short words are likely to * cause many false positives. */ disallowedList = $.grep( disallowedList, function( value, key ) { if ( '' === value || 4 > value.length ) { return false; } return $.inArray( value, disallowedList ) === key; }); return disallowedList; } }; // Backward compatibility. /** * Password strength meter function. * * @since 2.5.0 * @deprecated 3.7.0 Use wp.passwordStrength.meter instead. * * @global * * @type {wp.passwordStrength.meter} */ window.passwordStrength = wp.passwordStrength.meter; })(jQuery);
Upload File
Create Folder