engagementgamelab/CivicSeed

View on GitHub
client/code/admin/export.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict'
/* global $ */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

    admin.export

    - Setup export menu

 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

// Create event listeners to export data
function setupExportButtons () {
  $(document.body).on('click', '#admin-export button', function () {
    var dataType = $(this).data().type
    window.location = '/admin/export/' + dataType
  })
}

module.exports = {
  init: function () {
    setupExportButtons()
  }
}