summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorGiacomo Vespignani <giacomo.vespignani@acdsolutions.it>2020-05-27 11:13:09 +0200
committerGiacomo Vespignani <giacomo.vespignani@acdsolutions.it>2020-05-27 11:16:35 +0200
commitc9a28db3ab5650178c933fc3d2284958dd0fd84d (patch)
tree05cb38e6bf8938798fb56b8e19973abd7f7e849b /client
parent1cfb6eee4beadbdb84f5a11eb040f63369903e75 (diff)
downloadwekan-c9a28db3ab5650178c933fc3d2284958dd0fd84d.tar.gz
wekan-c9a28db3ab5650178c933fc3d2284958dd0fd84d.tar.bz2
wekan-c9a28db3ab5650178c933fc3d2284958dd0fd84d.zip
Added an API to get the cards for a specific custom field value
Diffstat (limited to 'client')
-rw-r--r--client/lib/exportHTML.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/lib/exportHTML.js b/client/lib/exportHTML.js
index b3c8d011..0cca4b04 100644
--- a/client/lib/exportHTML.js
+++ b/client/lib/exportHTML.js
@@ -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';