Changeset 41960
- Timestamp:
- 10/21/2017 08:43:36 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/customize-controls.js
r41958 r41960 3420 3420 } 3421 3421 3422 control.deferred = {3422 control.deferred = _.extend( control.deferred || {}, { 3423 3423 embedded: new $.Deferred() 3424 } ;3424 } ); 3425 3425 control.section = new api.Value(); 3426 3426 control.priority = new api.Value(); … … 5128 5128 initialize: function( id, options ) { 5129 5129 var control = this; 5130 api.Control.prototype.initialize.call( this, id, options ); 5131 control.deferred.codemirror = $.Deferred(); 5130 control.deferred = _.extend( control.deferred || {}, { 5131 codemirror: $.Deferred() 5132 } ); 5133 api.Control.prototype.initialize.call( control, id, options ); 5132 5134 }, 5133 5135
Note: See TracChangeset
for help on using the changeset viewer.