Changeset 49353
- Timestamp:
- 10/28/2020 12:43:16 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/wp/customize/base.js
r48650 r49353 113 113 * @return child The subclass. 114 114 */ 115 api.Class.extend = function( protoProps, classProps ) {116 var child = inherits( this, protoProps, classProps );115 api.Class.extend = function( protoProps, staticProps ) { 116 var child = inherits( this, protoProps, staticProps ); 117 117 child.extend = this.extend; 118 118 return child;
Note: See TracChangeset
for help on using the changeset viewer.