Changeset 48651
- Timestamp:
- 07/28/2020 12:05:59 AM (5 years ago)
- Location:
- trunk/src/js/_enqueues
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/lib/image-edit.js
r48650 r48651 74 74 * 75 75 * @param {jQuery} el The element that should be modified. 76 * @param {boolean|number} 76 * @param {boolean|number} s The state for the element. If set to true 77 77 * the element is disabled, 78 78 * otherwise the element is enabled. … … 842 842 * 843 843 * @param {number} postid The post ID. 844 * @param {boolean} 844 * @param {boolean} warn Warning message. 845 845 * 846 846 * @return {void|boolean} Returns false if there is a warning. -
trunk/src/js/_enqueues/wp/api.js
r48650 r48651 187 187 * 188 188 * @param {string} route The endpoint route. 189 * @param {number} 189 * @param {number} part The number of parts from the end of the route to retrieve. Default 1. 190 190 * Example route `/a/b/c`: part 1 is `c`, part 2 is `b`, part 3 is `a`. 191 191 * @param {string} [versionString] Version string, defaults to `wp.api.versionString`. … … 362 362 * 363 363 * @param {string} parentModel The parent model. 364 * @param {number} 364 * @param {number} modelId The model ID if the object to request 365 365 * @param {string} modelName The model name to use when constructing the model. 366 366 * @param {string} embedSourcePoint Where to check the embedds object for _embed data. -
trunk/src/js/_enqueues/wp/customize/controls.js
r48650 r48651 2167 2167 * 2168 2168 * @since 4.9.0 2169 * @param {Array} themes - Array of theme data to create controls with.2170 * @param {number} page - Page of results being loaded.2169 * @param {Array} themes - Array of theme data to create controls with. 2170 * @param {number} page - Page of results being loaded. 2171 2171 * @return {void} 2172 2172 */ -
trunk/src/js/_enqueues/wp/customize/selective-refresh.js
r48650 r48651 60 60 * @since 4.5.0 61 61 * 62 * @param {string} id - Unique identifier for the partial instance.63 * @param {Object} options - Options hash for the partial instance.64 * @param {string} options.type - Type of partial (e.g. nav_menu, widget, etc)65 * @param {string} options.selector - jQuery selector to find the container element in the page.66 * @param {Array} options.settings - The IDs for the settings the partial relates to.67 * @param {string} options.primarySetting - The ID for the primary setting the partial renders.68 * @param {boolean} 69 * @param {Object} [options.params] - Deprecated wrapper for the above properties.62 * @param {string} id - Unique identifier for the partial instance. 63 * @param {Object} options - Options hash for the partial instance. 64 * @param {string} options.type - Type of partial (e.g. nav_menu, widget, etc) 65 * @param {string} options.selector - jQuery selector to find the container element in the page. 66 * @param {Array} options.settings - The IDs for the settings the partial relates to. 67 * @param {string} options.primarySetting - The ID for the primary setting the partial renders. 68 * @param {boolean} options.fallbackRefresh - Whether to refresh the entire preview in case of a partial refresh failure. 69 * @param {Object} [options.params] - Deprecated wrapper for the above properties. 70 70 */ 71 71 initialize: function( id, options ) {
Note: See TracChangeset
for help on using the changeset viewer.