Changeset 63514
- Timestamp:
- 09/07/2026 11:44:25 AM (2 weeks ago)
- Location:
- trunk/src/js/_enqueues
- Files:
-
- 19 edited
-
admin/application-passwords.js (modified) (1 diff)
-
admin/edit-comments.js (modified) (1 diff)
-
admin/post.js (modified) (4 diffs)
-
admin/user-profile.js (modified) (1 diff)
-
lib/accordion.js (modified) (1 diff)
-
lib/auth-check.js (modified) (1 diff)
-
lib/color-picker.js (modified) (1 diff)
-
lib/list-revisions.js (modified) (1 diff)
-
lib/lists.js (modified) (1 diff)
-
lib/nav-menu.js (modified) (1 diff)
-
wp/api-request.js (modified) (2 diffs)
-
wp/api.js (modified) (5 diffs)
-
wp/code-editor.js (modified) (5 diffs)
-
wp/customize/base.js (modified) (1 diff)
-
wp/editor/dfw.js (modified) (1 diff)
-
wp/heartbeat.js (modified) (2 diffs)
-
wp/media/editor.js (modified) (2 diffs)
-
wp/sanitize.js (modified) (1 diff)
-
wp/updates.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/admin/application-passwords.js
r63406 r63514 4 4 5 5 /** 6 * Handles the Application Passwords functionality in the user profile screen. 7 * 6 8 * @param {JQueryStatic} $ The jQuery object. 7 9 */ -
trunk/src/js/_enqueues/admin/edit-comments.js
r63406 r63514 3 3 4 4 /** 5 * Handles updating and editing comments.6 5 * @output wp-admin/js/edit-comments.js 7 6 */ 8 7 9 8 /** 9 * Handles updating and editing comments. 10 * 10 11 * @param {JQueryStatic} $ The jQuery object. 11 12 */ -
trunk/src/js/_enqueues/admin/post.js
r63406 r63514 16 16 17 17 /** 18 * Handles the dynamic functionality needed on post and term pages. 19 * 18 20 * @param {JQueryStatic} $ The jQuery object. 19 21 */ … … 257 259 258 260 /** 259 * H eartbeat refresh nonces.261 * Handles the Heartbeat refresh nonces. 260 262 * 261 263 * @param {JQueryStatic} $ The jQuery object. … … 305 307 306 308 /** 307 * All post and postbox controls and functionality.309 * Handles all post and postbox controls and functionality. 308 310 * 309 311 * @param {JQueryStatic} $ The jQuery object. … … 1329 1331 1330 1332 /** 1331 * TinyMCE word count display1333 * Handles the TinyMCE word count display. 1332 1334 * 1333 1335 * @param {JQueryStatic} $ The jQuery object. -
trunk/src/js/_enqueues/admin/user-profile.js
r63406 r63514 6 6 7 7 /** 8 * Handles the user profile functionality. 9 * 8 10 * @param {JQueryStatic} $ The jQuery object. 9 11 */ -
trunk/src/js/_enqueues/lib/accordion.js
r63406 r63514 31 31 32 32 /** 33 * Handles the accordion functionality. 34 * 33 35 * @param {JQueryStatic} $ The jQuery object. 34 36 */ -
trunk/src/js/_enqueues/lib/auth-check.js
r63406 r63514 1 1 /** 2 * Interim login dialog.3 *4 2 * @output wp-includes/js/wp-auth-check.js 5 3 */ 6 4 7 5 /** 6 * Handles the interim login dialog. 7 * 8 8 * @param {JQueryStatic} $ The jQuery object. 9 9 */ -
trunk/src/js/_enqueues/lib/color-picker.js
r63406 r63514 6 6 7 7 /** 8 * Handles the color picker functionality. 9 * 8 10 * @param {JQueryStatic} $ The jQuery object. 9 11 * @param {undefined} undef The undefined value. -
trunk/src/js/_enqueues/lib/list-revisions.js
r63406 r63514 1 1 /** 2 * @output wp-includes/js/wp-list-revisions.js 3 */ 4 5 /** 6 * Hides the revisions radio buttons to stop selecting reverse comparisons 7 * 2 8 * @param {Window} w The global window object. 3 * @output wp-includes/js/wp-list-revisions.js4 9 */ 5 10 -
trunk/src/js/_enqueues/lib/lists.js
r63407 r63514 6 6 7 7 /** 8 * Handles the dynamic functionality needed for lists. 9 * 8 10 * @param {JQueryStatic} $ The jQuery object. 9 11 */ -
trunk/src/js/_enqueues/lib/nav-menu.js
r63407 r63514 1 1 /** 2 * WordPress Administration Navigation Menu 3 * Interface JS functions 2 * @output wp-admin/js/nav-menu.js 3 */ 4 5 /* global menus, postboxes, columns, isRtl, ajaxurl, wpNavMenu */ 6 7 /** 8 * Handles the WordPress Administration Navigation Menu Interface functionality. 4 9 * 5 10 * @version 2.0.0 11 * @package WordPress 6 12 * 7 * @package WordPress8 * @output wp-admin/js/nav-menu.js9 */10 11 /* global menus, postboxes, columns, isRtl, ajaxurl, wpNavMenu */12 13 /**14 13 * @param {JQueryStatic} $ The jQuery object. 15 14 */ -
trunk/src/js/_enqueues/wp/api-request.js
r63407 r63514 1 /** 2 * @output wp-includes/js/api-request.js 3 */ 4 1 5 /** 2 6 * Thin jQuery.ajax wrapper for WP REST API requests. … … 12 16 * @since 5.6.0 Added overriding of the "PUT" and "DELETE" methods with "POST". 13 17 * Added an "application/json" Accept header to all requests. 14 * @output wp-includes/js/api-request.js 15 */ 16 17 /** 18 * 18 19 * @param {JQueryStatic} $ The jQuery object. 19 20 */ -
trunk/src/js/_enqueues/wp/api.js
r63407 r63514 1 1 /** 2 * @output wp-includes/js/wp-api.js 3 */ 4 5 /** 6 * Initialize the WordPress REST API client. 7 * 2 8 * @param {Window} window The global window object. 3 9 * @param {undefined} undefined The undefined value. 4 * @output wp-includes/js/wp-api.js5 10 */ 6 7 11 (function( window, undefined ) { 8 12 … … 34 38 })( window ); 35 39 40 /** 41 * Sets up the WordPress REST API client with utilities and Backbone model mixins for managing API resources. 42 * 43 * @param {Window} window The global window object. 44 * @param {undefined} undefined The undefined value. 45 */ 36 46 (function( window, undefined ) { 37 47 … … 827 837 // Suppress warning about parse function's unused "options" argument: 828 838 /* jshint unused:false */ 839 840 /** 841 * Creates the base Backbone model for WordPress REST API. 842 */ 829 843 (function() { 830 844 … … 979 993 })(); 980 994 995 /** 996 * Creates the base Backbone collection for WordPress REST API. 997 */ 981 998 ( function() { 982 999 … … 1136 1153 } )(); 1137 1154 1155 /** 1156 * Constructs Backbone models and collections from the WordPress REST API schema. 1157 */ 1138 1158 ( function() { 1139 1159 -
trunk/src/js/_enqueues/wp/code-editor.js
r63407 r63514 139 139 140 140 /** 141 * @param {JQueryStatic} $ The jQuery object. 142 * @param {Object & { 143 * codeEditor: WpCodeEditor, 144 * CodeMirror: typeof import('codemirror'), 145 * }} wp - WordPress namespace. 141 * Handles the Code Editor (CodeMirror) functionality. 142 * 143 * @param {JQueryStatic} $ The jQuery object. 144 * @param {wp} wp The WordPress global object. 146 145 */ 147 146 ( function( $, wp ) { … … 166 165 167 166 /** 168 * Configure linting.167 * Configures linting. 169 168 * 170 169 * @param {CodeEditorSettings} settings - Code editor settings. … … 193 192 194 193 /** 195 * Get lint options.194 * Gets the lint options. 196 195 * 197 196 * @return {CombinedLintOptions|false} Lint options. … … 237 236 linterOptions.onUpdateLinting = (function( onUpdateLintingOverridden ) { 238 237 /** 238 * Wraps the onUpdateLinting event to filter errors, detect state changes, and manage error notice visibility. 239 * 239 240 * @param {LintAnnotation[]} annotations - Annotations. 240 241 * @param {LintAnnotation[]} annotationsSorted - Sorted annotations. … … 279 280 getLintOptions, 280 281 /** 282 * Initializes the CodeMirror editor. 283 * 281 284 * @param {CodeMirrorEditor} editor - Editor instance. 282 285 * @return {void} -
trunk/src/js/_enqueues/wp/customize/base.js
r63454 r63514 228 228 api.Value = api.Class.extend(/** @lends wp.customize.Value.prototype */{ 229 229 /** 230 * Initializes the Value instance and configures callbacks and options. 231 * 230 232 * @param {*} initial The initial value. 231 233 * @param {Object} [options] Options to extend the instance with. -
trunk/src/js/_enqueues/wp/editor/dfw.js
r63407 r63514 4 4 5 5 /** 6 * Handles the editor Distraction-Free Writing (DFW) functionality. 7 * 6 8 * @param {Window} window The global window object. 7 9 * @param {JQueryStatic} $ The jQuery object. -
trunk/src/js/_enqueues/wp/heartbeat.js
r63407 r63514 1 1 /** 2 * Heartbeat API 2 * @output wp-includes/js/heartbeat.js 3 */ 4 5 /** 6 * Handles the Heartbeat API. 3 7 * 4 8 * Heartbeat is a simple server polling API that sends XHR requests to … … 25 29 * 26 30 * @since 3.6.0 27 * @output wp-includes/js/heartbeat.js28 */29 30 /**31 31 * @param {JQueryStatic} $ The jQuery object. 32 32 * @param {Window} window The global window object. -
trunk/src/js/_enqueues/wp/media/editor.js
r63407 r63514 5 5 /* global getUserSetting, tinymce, QTags */ 6 6 7 // WordPress, TinyMCE, and Media 8 // ----------------------------- 7 /** 8 * Handles the initialization, refreshing and rendering of media editor components. 9 * 10 * @param {JQueryStatic} $ The jQuery object. 11 * @param {_.UnderscoreStatic} _ The Underscore.js object. 12 */ 9 13 (function($, _){ 10 14 /** … … 334 338 335 339 /** 340 * Factory function that creates a media collection controller for managing gallery, playlist, and other media shortcodes. 341 * 336 342 * @class wp.media.collection 337 343 * -
trunk/src/js/_enqueues/wp/sanitize.js
r63407 r63514 3 3 */ 4 4 5 /** 6 * Provides helper functions to sanitize strings. 7 */ 5 8 ( function () { 6 9 -
trunk/src/js/_enqueues/wp/updates.js
r63407 r63514 1 1 /** 2 * Functions for ajaxified updates, deletions and installs inside the WordPress admin. 2 * @output wp-admin/js/updates.js 3 */ 4 5 /* global pagenow, _wpThemeSettings */ 6 7 /** 8 * Provides functions for ajaxified updates, deletions and installs inside the WordPress admin. 3 9 * 4 10 * @version 4.2.0 5 * @output wp-admin/js/updates.js 6 */ 7 8 /* global pagenow, _wpThemeSettings */ 9 10 /** 11 * 11 12 * @param {JQueryStatic} $ The jQuery object. 12 * @param {Object} wp WPobject.13 * @param {Object} wp The WordPress global object. 13 14 * @param {Object} settings WP Updates settings. 14 15 * @param {string} settings.ajax_nonce Ajax nonce.
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)