Changeset 42035
- Timestamp:
- 10/28/2017 06:36:12 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/customize-controls.js
r42033 r42035 1303 1303 } 1304 1304 if ( template && container.container ) { 1305 return $.trim( template( container.params ) ); 1305 return $.trim( template( _.extend( 1306 { id: container.id }, 1307 container.params 1308 ) ) ); 1306 1309 } 1307 1310 … … 2969 2972 } 2970 2973 if ( template && panel.headContainer ) { 2971 panel.contentContainer.html( template( panel.params ) ); 2974 panel.contentContainer.html( template( _.extend( 2975 { id: panel.id }, 2976 panel.params 2977 ) ) ); 2972 2978 } 2973 2979 }
Note: See TracChangeset
for help on using the changeset viewer.