font-family: Lato, sans-serif;
color: rgba(0, 0, 0, 0.87);
<h2 class="title sans">Exporter.List example</h2>
<ul id="exports" class="sans"></ul>
var exportOutput = document.getElementById('exports');
function formatOutput(exp) {
<li class="export subtitle">${new Date(exp.date_creation).toLocaleDateString()} - ${exp.status}: <a href="${exp.download_path}" target="blank" class="download-link" download>(link)</a></li>
.then(function(dronedeployApi) {
return dronedeployApi.Plans.getCurrentlyViewed()
return dronedeployApi.Exporter.list({
}).then(function(exports) {
exportOutput.innerHTML = exports.map(formatOutput).join('');