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.

20 lines (15 loc) 409 B
/* eslint-disable class-methods-use-this */ import { DprClientClass } from './DprClientClass.mjs' export default class DprSyncLoading extends DprClientClass { static getModuleName() { return 'sync-loading' } initialise() { this.element = this.getElement() this.form = this.element.querySelector('#dpr-sync-loading-form') this.load() } async load() { this.form.submit() } }