diff --git a/wp-includes/js/customize-base.js b/wp-includes/js/customize-base.js
index 628d267..13d1ae2 100644
a
|
b
|
window.wp = window.wp || {}; |
13 | 13 | * Similar to `goog.inherits`, but uses a hash of prototype properties and |
14 | 14 | * class properties to be extended. |
15 | 15 | * |
16 | | * @param object parent Parent class constructor to inherit from. |
17 | | * @param object protoProps Properties to apply to the prototype for use as class instance properties. |
18 | | * @param object staticProps Properties to apply directly to the class constructor. |
| 16 | * @param {object} parent Parent class constructor to inherit from. |
| 17 | * @param {object} protoProps Properties to apply to the prototype for use as class instance properties. |
| 18 | * @param {object} staticProps Properties to apply directly to the class constructor. |
19 | 19 | * @return child The subclassed constructor. |
20 | 20 | */ |
21 | 21 | inherits = function( parent, protoProps, staticProps ) { |
… |
… |
window.wp = window.wp || {}; |
98 | 98 | /** |
99 | 99 | * Creates a subclass of the class. |
100 | 100 | * |
101 | | * @param object protoProps Properties to apply to the prototype. |
102 | | * @param object staticProps Properties to apply directly to the class. |
| 101 | * @param {object} protoProps Properties to apply to the prototype. |
| 102 | * @param {object} classProps Properties to apply directly to the class. |
103 | 103 | * @return child The subclass. |
104 | 104 | */ |
105 | 105 | api.Class.extend = function( protoProps, classProps ) { |
… |
… |
window.wp = window.wp || {}; |
539 | 539 | /** |
540 | 540 | * Cast a string to a jQuery collection if it isn't already. |
541 | 541 | * |
542 | | * @param {string|jQuery collection} element |
| 542 | * @param {string|jQuery} element |
543 | 543 | */ |
544 | 544 | api.ensure = function( element ) { |
545 | | return typeof element == 'string' ? $( element ) : element; |
| 545 | return typeof element === 'string' ? $( element ) : element; |
546 | 546 | }; |
547 | 547 | |
548 | 548 | /** |
diff --git a/wp-includes/js/customize-loader.js b/wp-includes/js/customize-loader.js
index 9d0aad8..4f05aab 100644
a
|
b
|
window.wp = window.wp || {}; |
101 | 101 | /** |
102 | 102 | * Open the Customizer overlay for a specific URL. |
103 | 103 | * |
104 | | * @param string src URL to load in the Customizer. |
| 104 | * @param {string} src URL to load in the Customizer. |
105 | 105 | */ |
106 | 106 | open: function( src ) { |
107 | 107 | |