Skip to content

Commit c6e520b

Browse files
committed
Fix typo
1 parent fc16c00 commit c6e520b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/js/components/crops-sizes.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ const CropSizes = {
8787

8888
// Bind input events once
8989
if ( ! input.bound ) {
90-
let timout = null;
90+
let timeout = null;
9191
input.addEventListener( 'input', () => {
92-
if ( timout ) {
93-
clearTimeout( timout );
92+
if ( timeout ) {
93+
clearTimeout( timeout );
9494
}
95-
timout = setTimeout( () => {
95+
timeout = setTimeout( () => {
9696
this.buildImages( wrapper, sizeContent );
9797
}, 1000 );
9898
} );

0 commit comments

Comments
 (0)