diff --git src/wp-admin/js/customize-controls.js src/wp-admin/js/customize-controls.js
index 880e583..f43630a 100644
|
|
|
128 | 128 | api.utils.areElementListsEqual = function ( listA, listB ) { |
129 | 129 | var equal = ( |
130 | 130 | listA.length === listB.length && // if lists are different lengths, then naturally they are not equal |
131 | | -1 === _.map( // are there any false values in the list returned by map? |
| 131 | -1 === _.indexOf( _.map( // are there any false values in the list returned by map? |
132 | 132 | _.zip( listA, listB ), // pair up each element between the two lists |
133 | 133 | function ( pair ) { |
134 | 134 | return $( pair[0] ).is( pair[1] ); // compare to see if each pair are equal |
135 | 135 | } |
136 | | ).indexOf( false ) // check for presence of false in map's return value |
| 136 | ), false ) // check for presence of false in map's return value |
137 | 137 | ); |
138 | 138 | return equal; |
139 | 139 | }; |