Export Board to Zip file

* Extracts Card covers
* Labels
* Re-works some CSS & HTML
* Produces deployable assets (minus WebFonts)
This commit is contained in:
Lewis Cowles 2020-04-22 17:31:48 +01:00
parent c22eaa26cd
commit 5ef83ab236
5 changed files with 253 additions and 1 deletions

View file

@ -463,6 +463,13 @@ BlazeComponent.extendComponent({
},
}).register('exportBoardPopup');
Template.exportBoard.events({
'click .html-export-board': async event => {
event.preventDefault();
await ExportHtml(Popup)();
}
});
Template.labelsWidget.events({
'click .js-label': Popup.open('editLabel'),
'click .js-add-label': Popup.open('createLabel'),