Merge pull request #4130 from SoyDiego/fix-fileupload-added-highlight-class

Added .p-fileupload-highlight class
pull/4295/head
Tuğçe Küçükoğlu 2023-08-18 13:40:29 +03:00 committed by GitHub
commit 8a337acdde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -265,6 +265,7 @@ export default {
},
onDragOver(event) {
if (!this.disabled) {
this.$refs.content.classList.add('p-fileupload-highlight');
this.$refs.content.setAttribute('data-p-highlight', true);
event.stopPropagation();
event.preventDefault();
@ -272,6 +273,7 @@ export default {
},
onDragLeave() {
if (!this.disabled) {
this.$refs.content.classList.remove('p-fileupload-highlight');
this.$refs.content.setAttribute('data-p-highlight', false);
}
},