Merge pull request #1534 from Safelite/feature/csr-1790

Feature/csr 1790
This commit is contained in:
chloeherdsafelite 2023-11-15 15:44:47 -05:00 committed by GitHub
commit 2d4a894d65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,7 @@
class="loader"
role="alert"
aria-label="Loading new page"
@click="captureClick"
v-bind:class="[
this.loaderColor,
this.loaderPosition,
@ -30,6 +31,13 @@ export default {
default: false,
},
},
methods: {
captureClick(event) {
if (!this.allowPageInteraction) {
event.stopPropagation();
}
},
},
};
</script>