fix: remove __fakeFileInput, clean up on destroy (#1025)

This commit is contained in:
Nolan Lawson 2019-02-19 21:50:41 -08:00 committed by GitHub
parent a63e85bf30
commit 44e3ea575e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 9 deletions

View file

@ -54,14 +54,10 @@
export default { export default {
oncreate () { oncreate () {
// for testing window.__composeToolbar = this // for testing
window.__fakeFileInput = (file) => { },
this.onFileChange({ ondestroy () {
target: { window.__composeToolbar = null
files: [file]
}
})
}
}, },
components: { components: {
IconButton, IconButton,

View file

@ -131,7 +131,9 @@ export const uploadKittenImage = i => (exec(() => {
let image = images[`kitten${i}`] let image = images[`kitten${i}`]
let blob = blobUtils.base64StringToBlob(image.data, 'image/png') let blob = blobUtils.base64StringToBlob(image.data, 'image/png')
blob.name = image.name blob.name = image.name
window.__fakeFileInput(blob) window.__composeToolbar.onFileChange({
target: { files: [blob] }
})
}, { }, {
dependencies: { dependencies: {
images, images,