Skip to content
Snippets Groups Projects
Commit 1efa9f8a authored by Aya Morisawa's avatar Aya Morisawa
Browse files

Remove consecutive lines

parent 87fb079e
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ module.exports = (I, cb, file = null) => {
title: 'アバターとして表示する部分を選択',
aspectRatio: 1 / 1
})[0];
cropper.on('cropped', blob => {
const data = new FormData();
data.append('i', I.token);
......@@ -30,7 +30,7 @@ module.exports = (I, cb, file = null) => {
}
});
});
cropper.on('skiped', () => {
set(file);
});
......@@ -40,9 +40,9 @@ module.exports = (I, cb, file = null) => {
const progress = riot.mount(document.body.appendChild(document.createElement('mk-progress-dialog')), {
title: '新しいアバターをアップロードしています'
})[0];
if (folder) data.append('folder_id', folder.id);
const xhr = new XMLHttpRequest();
xhr.open('POST', CONFIG.apiUrl + '/drive/files/create', true);
xhr.onload = e => {
......
......@@ -10,7 +10,7 @@ module.exports = (I, cb, file = null) => {
title: 'バナーとして表示する部分を選択',
aspectRatio: 16 / 9
})[0];
cropper.on('cropped', blob => {
const data = new FormData();
data.append('i', I.token);
......@@ -30,7 +30,7 @@ module.exports = (I, cb, file = null) => {
}
});
});
cropper.on('skiped', () => {
set(file);
});
......@@ -40,9 +40,9 @@ module.exports = (I, cb, file = null) => {
const progress = riot.mount(document.body.appendChild(document.createElement('mk-progress-dialog')), {
title: '新しいバナーをアップロードしています'
})[0];
if (folder) data.append('folder_id', folder.id);
const xhr = new XMLHttpRequest();
xhr.open('POST', CONFIG.apiUrl + '/drive/files/create', true);
xhr.onload = e => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment