1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/js/clients/shared/multiple-downloads.js

30 lines
749 B
JavaScript
Raw Normal View History

2020-08-20 03:10:04 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-08-20 03:10:04 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
const appendToElement = (parent, value) => {
let _parent = document.getElementById(parent);
let _possibleElement = _parent.querySelector(`input[value="${value}"]`);
if (_possibleElement) {
return _possibleElement.remove();
}
let _temp = document.createElement('INPUT');
_temp.setAttribute('name', 'file_hash[]');
_temp.setAttribute('value', value);
_temp.hidden = true;
_parent.append(_temp);
};
window.appendToElement = appendToElement;