Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

offcanvas-send-invoice.js 308B

1234567891011121314
  1. /**
  2. * Send Invoice Offcanvas
  3. */
  4. 'use strict';
  5. document.addEventListener('DOMContentLoaded', function (e) {
  6. // Send invoice textarea
  7. const invoiceMsg = document.querySelector('#invoice-message');
  8. const trimMsg = invoiceMsg.textContent.replace(/^\s+|\s+$/gm, '');
  9. invoiceMsg.value = trimMsg;
  10. });