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

Fix typo: uplaod -> upload

parent 1efa9f8a
No related branches found
No related tags found
No related merge requests found
......@@ -23,10 +23,10 @@ module.exports = (I, cb, file = null) => {
api(I, 'drive/folders/create', {
name: 'アイコン'
}).then(iconFolder => {
uplaod(data, iconFolder);
upload(data, iconFolder);
});
} else {
uplaod(data, iconFolder[0]);
upload(data, iconFolder[0]);
}
});
});
......@@ -36,7 +36,7 @@ module.exports = (I, cb, file = null) => {
});
};
const uplaod = (data, folder) => {
const upload = (data, folder) => {
const progress = riot.mount(document.body.appendChild(document.createElement('mk-progress-dialog')), {
title: '新しいアバターをアップロードしています'
})[0];
......
......@@ -23,10 +23,10 @@ module.exports = (I, cb, file = null) => {
api(I, 'drive/folders/create', {
name: 'バナー'
}).then(iconFolder => {
uplaod(data, iconFolder);
upload(data, iconFolder);
});
} else {
uplaod(data, iconFolder[0]);
upload(data, iconFolder[0]);
}
});
});
......@@ -36,7 +36,7 @@ module.exports = (I, cb, file = null) => {
});
};
const uplaod = (data, folder) => {
const upload = (data, folder) => {
const progress = riot.mount(document.body.appendChild(document.createElement('mk-progress-dialog')), {
title: '新しいバナーをアップロードしています'
})[0];
......
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