Changeset 40420 for branches/4.7
- Timestamp:
- 04/13/2017 12:31:23 PM (8 years ago)
- Location:
- branches/4.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/src/wp-admin/js/customize-controls.js
r40402 r40420 4763 4763 populateChangesetUuidParam = function( isIncluded ) { 4764 4764 var urlParser, queryParams; 4765 4766 // Abort on IE9 which doesn't support history management. 4767 if ( ! history.replaceState ) { 4768 return; 4769 } 4770 4765 4771 urlParser = document.createElement( 'a' ); 4766 4772 urlParser.href = location.href; … … 4781 4787 }; 4782 4788 4783 if ( history.replaceState ) { 4784 changesetStatus.bind( function( newStatus ) { 4785 populateChangesetUuidParam( '' !== newStatus && 'publish' !== newStatus ); 4786 } ); 4787 } 4789 changesetStatus.bind( function( newStatus ) { 4790 populateChangesetUuidParam( '' !== newStatus && 'publish' !== newStatus ); 4791 } ); 4788 4792 4789 4793 // Expose states to the API.
Note: See TracChangeset
for help on using the changeset viewer.