diff --git a/src/js/_enqueues/wp/customize/base.js b/src/js/_enqueues/wp/customize/base.js
index 4afaa94557..d0fe1801a0 100644
a
|
b
|
window.wp = window.wp || {}; |
17 | 17 | * Similar to `goog.inherits`, but uses a hash of prototype properties and |
18 | 18 | * class properties to be extended. |
19 | 19 | * |
20 | | * @param object parent Parent class constructor to inherit from. |
21 | | * @param object protoProps Properties to apply to the prototype for use as class instance properties. |
22 | | * @param object staticProps Properties to apply directly to the class constructor. |
| 20 | * @param {object} parent Parent class constructor to inherit from. |
| 21 | * @param {object} protoProps Properties to apply to the prototype for use as class instance properties. |
| 22 | * @param {object} staticProps Properties to apply directly to the class constructor. |
23 | 23 | * @return child The subclassed constructor. |
24 | 24 | */ |
25 | 25 | inherits = function( parent, protoProps, staticProps ) { |
… |
… |
window.wp = window.wp || {}; |
108 | 108 | /** |
109 | 109 | * Creates a subclass of the class. |
110 | 110 | * |
111 | | * @param object protoProps Properties to apply to the prototype. |
112 | | * @param object staticProps Properties to apply directly to the class. |
| 111 | * @param {object} protoProps Properties to apply to the prototype. |
| 112 | * @param {object} classProp Properties to apply directly to the class. |
113 | 113 | * @return child The subclass. |
114 | 114 | */ |
115 | 115 | api.Class.extend = function( protoProps, staticProps ) { |
… |
… |
window.wp = window.wp || {}; |
557 | 557 | /** |
558 | 558 | * Cast a string to a jQuery collection if it isn't already. |
559 | 559 | * |
560 | | * @param {string|jQuery collection} element |
| 560 | * @param {string|jQuery} element |
561 | 561 | */ |
562 | 562 | api.ensure = function( element ) { |
563 | 563 | return typeof element === 'string' ? $( element ) : element; |
diff --git a/src/js/_enqueues/wp/customize/loader.js b/src/js/_enqueues/wp/customize/loader.js
index 2326f1f7df..9e92610683 100644
a
|
b
|
window.wp = window.wp || {}; |
106 | 106 | /** |
107 | 107 | * Open the Customizer overlay for a specific URL. |
108 | 108 | * |
109 | | * @param string src URL to load in the Customizer. |
| 109 | * @param {string} src URL to load in the Customizer. |
110 | 110 | */ |
111 | 111 | open: function( src ) { |
112 | 112 | |