File Attachments
File attachment library.
How to use
Copy-paste the following <script>
near the end of your pages under JS Implementing Plugins to enable it.
<script src="../node_modules/hs-file-attach/dist/hs-file-attach.min.js"></script>
Copy-paste the init function under JS Plugins Init., before the closing </body>
tag, to enable it.
<script>
$(document).on('ready', function () {
// initialization of custom file
$('.js-file-attach').each(function () {
var customFile = new HSFileAttach($(this)).init();
});
});
</script>