deblan.io-murph/core/Resources/assets/js/modules/form-file.js

12 lines
273 B
JavaScript
Raw Normal View History

2021-06-21 21:34:54 +02:00
const $ = require('jquery')
module.exports = function () {
$('body').on('change', '.custom-file-input', function (event) {
const inputFile = event.currentTarget
$(inputFile).parent()
.find('.custom-file-label')
.html(inputFile.files[0].name)
})
}