UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

15 lines (12 loc) 402 B
import { DprClientClass } from '../../../DprClientClass.mjs' export default class DownloadMessage extends DprClientClass { static getModuleName() { return 'download-message' } initialise() { this.downloadMessage = this.getElement() if (window.location.href.indexOf('download-disabled') > -1) { this.downloadMessage.classList.remove('dpr-download-message--hidden') } } }