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