Clean up code

This commit is contained in:
Ramon Wenger 2019-07-11 18:50:31 +02:00
parent c5fea80ab4
commit b7e4d3eb53
4 changed files with 0 additions and 14 deletions

View File

@ -35,12 +35,6 @@
let urlWithFilename = fileInfo.cdnUrl + fileInfo.name;
this.$emit('link-change-url', urlWithFilename);
});
result.progress(p => {
});
result.fail(uploadResult => {
});
});
}
}

View File

@ -267,7 +267,6 @@
}
&__submission {
/*margin-bottom: 12px;*/
@include input-box-shadow;
background-color: $color-white;
border-radius: $input-border-radius;

View File

@ -55,7 +55,6 @@
&__save-status {
position: relative;
/*width: 50px;*/
align-items: center;
}

View File

@ -19,11 +19,5 @@ export const uploadcare = (component, callback) => { // callback with signature
let urlWithFilename = fileInfo.cdnUrl + fileInfo.name;
callback(urlWithFilename);
});
panelResult.progress(p => {
});
panelResult.fail(uploadResult => {
});
});
};