Skip to content
Snippets Groups Projects
Commit 433e8ea1 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Disable drop zone

Otherwise dropping something somewhere can by mistake upload the file and make it available
parent a0e92b5f
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,7 @@ $(document).ready(function () {
var uploadParamsLogo = {
pasteZone: null,
dropZone: null,
done: function (e, response) {
preview('logoMime', response.result.data.name);
OC.msg.finishedSaving('#theming_settings_msg', response.result);
......@@ -65,6 +66,7 @@ $(document).ready(function () {
};
var uploadParamsLogin = {
pasteZone: null,
dropZone: null,
done: function (e, response) {
preview('backgroundMime', response.result.data.name);
OC.msg.finishedSaving('#theming_settings_msg', response.result);
......
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