Fix typo: skiped -> skipped

This commit is contained in:
Aya Morisawa 2017-02-27 17:17:40 +09:00
parent 3c14d8c96d
commit 1c9d7dd57d
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ module.exports = (I, cb, file = null) => {
}); });
}); });
cropper.on('skiped', () => { cropper.on('skipped', () => {
set(file); set(file);
}); });
}; };

View File

@ -31,7 +31,7 @@ module.exports = (I, cb, file = null) => {
}); });
}); });
cropper.on('skiped', () => { cropper.on('skipped', () => {
set(file); set(file);
}); });
}; };

View File

@ -182,7 +182,7 @@
}; };
this.skip = () => { this.skip = () => {
this.trigger('skiped'); this.trigger('skipped');
this.refs.window.close(); this.refs.window.close();
}; };