We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc16c00 commit c6e520bCopy full SHA for c6e520b
1 file changed
src/js/components/crops-sizes.js
@@ -87,12 +87,12 @@ const CropSizes = {
87
88
// Bind input events once
89
if ( ! input.bound ) {
90
- let timout = null;
+ let timeout = null;
91
input.addEventListener( 'input', () => {
92
- if ( timout ) {
93
- clearTimeout( timout );
+ if ( timeout ) {
+ clearTimeout( timeout );
94
}
95
- timout = setTimeout( () => {
+ timeout = setTimeout( () => {
96
this.buildImages( wrapper, sizeContent );
97
}, 1000 );
98
} );
0 commit comments