Added an API to get the cards for a specific custom field value

This commit is contained in:
Giacomo Vespignani 2020-05-27 11:13:09 +02:00
parent 1cfb6eee4b
commit c9a28db3ab
2 changed files with 51 additions and 6 deletions

View file

@ -2,7 +2,7 @@ const JSZip = require('jszip');
window.ExportHtml = Popup => {
const saveAs = function(blob, filename) {
let dl = document.createElement('a');
const dl = document.createElement('a');
dl.href = window.URL.createObjectURL(blob);
dl.onclick = event => document.body.removeChild(event.target);
dl.style.display = 'none';