diff --git src/wp-admin/js/customize-controls.js src/wp-admin/js/customize-controls.js
index d340a1ba04..f3210e8491 100644
|
|
|
|
| 4420 | 4420 | function captureSettingModifiedDuringSave( setting ) { |
| 4421 | 4421 | modifiedWhileSaving[ setting.id ] = true; |
| 4422 | 4422 | } |
| 4423 | | api.bind( 'change', captureSettingModifiedDuringSave ); |
| 4424 | 4423 | |
| 4425 | 4424 | submit = function () { |
| 4426 | 4425 | var request, query, settingInvalidities = {}, latestRevision = api._latestRevision; |
| 4427 | 4426 | |
| | 4427 | api.bind( 'change', captureSettingModifiedDuringSave ); |
| | 4428 | |
| 4428 | 4429 | /* |
| 4429 | 4430 | * Block saving if there are any settings that are marked as |
| 4430 | 4431 | * invalid from the client (not from the server). Focus on |