Merge branch 'master' into privacyEvent

This commit is contained in:
Mat 2018-10-23 09:56:49 +02:00
commit e2cbd65775
2 changed files with 9 additions and 0 deletions

View File

@ -13,6 +13,11 @@ Version 1.5.2
You must add `"dropzone": "^5.5.1"` to your dependencies in `packages.json` at the root project.
Master branch
=============
- the javascript for uploading a file now works within collections, listening to collection events.
PrivacyEvent branch
===================

View File

@ -227,3 +227,7 @@ var insertDownloadButton = (zone) => {
window.addEventListener('load', function(e) {
searchForZones(document);
});
window.addEventListener('collection-add-entry', function(e) {
searchForZones(e.detail.entry);
});