Fixed remove pages un-handled exception with space in input #761

This commit is contained in:
mannam 2024-02-08 21:03:57 +05:30
parent 6c963e1b6c
commit 41686883ee

View file

@ -4,6 +4,7 @@
<th:block th:insert="~{fragments/common :: head(title=#{pageRemover.title}, header=#{pageRemover.header})}"></th:block>
<body>
<div id="page-container">
<div id="content-wrap">
@ -28,5 +29,10 @@
</div>
<div th:insert="~{fragments/footer.html :: footer}"></div>
</div>
<script>
document.getElementById('fileInput').addEventListener('input', function(){
this.value =this.value.replace(/\s+/g, '');;
});
</script>
</body>
</html>